Get list of sql azure databases in a Windows Azure server -
is there simple way code in c# list of sql azure databases in windows azure server?
thanks martin
to list databases on server, can query sys.databases table in master database. can use data access framework query table, such entity framework (http://msdn.microsoft.com/en-us/library/bb399572.aspx).
you can list servers under subscription using management api (http://msdn.microsoft.com/en-us/library/windowsazure/gg715269).
Comments
Post a Comment