June 30, 2020

Pay Vijayawada Municipal Corporation Water bill and Property Tax Online

Hi Vijayawada residents,

Do not stand in the big queue/line for paying the property tax and water bill.

Now you can pay property tax and water bill online. 

Citizen Services Home Page

Click the below link to view all online payment links for Citizen services


Water Bill Payment Procedure

1. After clicking the above link, click "Click here to pay your Water charges"
2. Enter any one of the following search fields like Assessment number or old assessment number
Vijayawada Municipal Corporation Water Bill Search
3. Click on "Search"
4. The search result appears if you enter valid input as below
5. Click on the actions and select "Collect Charge" as shown in below image
6. You would be redirected to a page where you have to do the following
  1. Amount
  2. Select payment gateway
  3. Accept terms and conditions
  4. Click on "Pay Online"
7. After clicking on "Pay Online" button, you would be redirected to the below page
8. Click on "Online Payment"
9. Then the following screen will come
10. Click on "SBI" button
11. Now you would be taken to SBI payments page, where you have to select the type of payment mode
12. Click on the appropriate mode and perform the payment
  • The credit card and netbanking charges differ from the screenshot (image) above
13. Once the payment is successful, you will get "Generate Receipt" button
14. Click on it and download the payment receipt.

Property Tax (PT) Payment Procedure

1. After clicking the citizen service link, click "Click here to pay your Property taxes"
2. Enter your assessment number (new or old) 
3. You would be redirected to a page where you have to do the following
  1. Amount
  2. Select payment gateway
  3. Accept terms and conditions
  4. Click on "Pay Online"
4. After clicking on "Pay Online" button, you would be redirected to the below page
5. Click on "Online Payment"
6. Then the following screen will come
7. Click on "SBI" button
8. Now you would be taken to SBI payments page, where you have to select the type of payment mode
9. Click on the appropriate mode and perform the payment
  • The credit card and netbanking charges differ from the screenshot (image) above
10. Once the payment is successful, you will get "Generate Receipt" button
11. Click on it and download the payment receipt.

Hope this blog post help you to do the online payment.

Please send your feedback and comments to psrdotcom@gmail.com

June 24, 2020

Connect or Mount USB Storage drives in Windows Linux Sub System

Hi folks,

This post will explain the process of connecting / mounting USB devices to Windows Linux Sub Systems

Mount removable media (e.g. E:)

$ sudo mkdir /mnt/e
$ sudo mount -t drvfs E: /mnt/e

Unmount

$ sudo umount /mnt/e
Send your comments and feedback to psrdotcom@gmail.com


June 22, 2020

Flutter Android Release Failure [INSTALL_FAILED_NO_MATCHING_ABIS] issue fix

Hi folks,
Today I will let you know the flutter issue of Failure [INSTALL_FAILED_NO_MATCHING_ABIS] and its fix.

Procedure

  • Add the following config in your app/build.gradle

android {
    splits {
           abi {
                 enable true
                 reset()
                 universalApk true
               }
    }
}

flutter {
    source '../..'
}


Release AppBundle / APK

  • Run the following command to generate appbundle
flutter build appbundle
  • Run the following command to generate apk
flutter build apk

References

June 10, 2020

Microsoft Azure SQL Server Read Only User Creation Deletion

Hi folks,

Today I will explain, how you can easily manage the readonly (view) users in Azure Microsoft SQL Server

Procedure

In Azure SQL Server

CREATE LOGIN [testuser] WITH PASSWORD = 'random_p@$$w0rd';

For master and each DB

Note: You must create the user in master db before creating in other databases
CREATE USER [testuser] FOR LOGIN [testuser]   
    WITH DEFAULT_SCHEMA = [dbo];  
GO

Grant Connect permission

GRANT CONNECT TO [testuser]
GO

Give datareader role to read (view) only

ALTER ROLE db_datareader ADD MEMBER [testuser]
GO

Drop user in DB

DROP USER [testuser]
GO

Drop user in Azure SQL

DROP LOGIN [testuser];
GO

Please send your comments and feedback to psrdotcom@gmail.com

Featured Post

Java Introdcution

Please send your review and feedback to psrdotcom@gmail.com