I am running Sql 7 on windows NT.
I am trying to create a database by opening the Query Analyser and entering the following:
create database ScriptTest
on
( Name = 'ScriptTest_Data',
Filename = 'c:\mssql7\data\ScriptTest_Data.mdf',
Size = 5MB,
Maxsize = 25MB,
FileGrowth = 5MB )
Log on
( Name = 'ScriptTest_log',
Filename = 'c:\mssql7\data\ScriptTest_Log.ldf',
Size = 2MB,
Maxsize = 12MB,
FileGrowth = 20% )
The 2 data files are created fine. But it is not showing in the Enterprise Manager.
Now, when I opened the Query Analyser, the DB is showing Master. Is this correct?
Thanks,
Tom.
I am trying to create a database by opening the Query Analyser and entering the following:
create database ScriptTest
on
( Name = 'ScriptTest_Data',
Filename = 'c:\mssql7\data\ScriptTest_Data.mdf',
Size = 5MB,
Maxsize = 25MB,
FileGrowth = 5MB )
Log on
( Name = 'ScriptTest_log',
Filename = 'c:\mssql7\data\ScriptTest_Log.ldf',
Size = 2MB,
Maxsize = 12MB,
FileGrowth = 20% )
The 2 data files are created fine. But it is not showing in the Enterprise Manager.
Now, when I opened the Query Analyser, the DB is showing Master. Is this correct?
Thanks,
Tom.