How to change Database password via MVC application
Hello,Did you try doing the ALTER LOGIN directly from your application (via ADO.NET)?ALTER LOGIN [test] WITH PASSWORD = 'yournewpasswordhere';Best Regards,Joe Sack, Principal PM, Microsoft
View ArticleHow to change Database password via MVC application
Hello, I have not been able to find a solution, please allow me some more time.Regards, Alberto MorilloSQLCoffee.com
View ArticleHow to change Database password via MVC application
Hello, Please allow me some time to investigate this. Maybe I can find some help.Please consider today is a holiday in US. Thank you for your patience. Regards,Alberto MorilloSQLCoffee.com
View ArticleHow to change Database password via MVC application
I did the following task- created certificate throughkeytool -genkeypair -alias mydomain -keyalg RSA -keystore <Name of the keystore.> -keysize 2048 -storepass "<Password for the...
View ArticleHow to change Database password via MVC application
Hello,You are very welcome Vivek! The following article shows you how to create a certificate.https://msdn.microsoft.com/en-us/library/azure/jj154123.aspx?f=255&MSPPError=-2147217396 Hope this...
View ArticleHow to change Database password via MVC application
Thanks a lot :-)would you please tell me how to get the thumbprint. I checked my subscription and didn't got any management certificates to my subscription. Should I need to create one and upload it?...
View ArticleHow to change Database password via MVC application
Hello, You can change the password via REST API. https://msdn.microsoft.com/en-us/library/azure/dn505696.aspx Hope this helps. Regards,Alberto MorilloSQLCoffee.com
View ArticleHow to change Database password via MVC application
I am developing a web app with Azure SQL Database as backend. I want the functionality of changing my Azure database password through the web app only. How can I do that? I am using .Net 4 framework...
View Article