• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

ASP.NET Enterprise Manager, query problem

S

Simius

Guest
Hi all,
executing a simple query from the query window like:

using test CREATE TABLE Person
(
LastName varchar(30),
FirstName varchar,
Address varchar,
Age int(3)
)


result in nothing....i mean no error, no table created, nothing...
Any suggestion?
This tool looks a little poor....
 
In generally your issue is not regarding to Plesk at all. It'll be better to fix such problems on mssql/asp.net forums.

Regarding to the issue itself. Most probably the table was created in your system datase. To create a table in the test database, use 'GO' before you create a table.
 
Back
Top