ylb10
ylb10

Reputation: 1

How come the Query in Management Portal of Azure didn't work?

I am trying out this exercise - http://azure.microsoft.com/en-us/documentation/articles/sql-database-get-started/

Instead of connecting to SQL Server Management Studio 2014, I am using Query in Azure Management Portal. However, I am stuck in Step 7 at a very simple query - "Select * Person". I kept getting error message saying - Invalid object name 'Per'. What was done incorrectly?

Upvotes: 0

Views: 92

Answers (2)

ckarst
ckarst

Reputation: 761

I tried but I am unable to repro your issue. You could try open the saved query in a text editor and change the text there, then save and open the file again in the management portal. That may work.

Also, you could try using SSDT https://msdn.microsoft.com/en-us/data/hh297027 for a better development experience.

Upvotes: 2

Joseph Idziorek
Joseph Idziorek

Reputation: 5081

Please try

SELECT * FROM Person

Upvotes: 1

Related Questions