Viewing 15 posts - 271 through 285 (of 349 total)
You can connect as follows
1.) osql -E -Sservername
or
2.) osql -E -Sservername,portnumber (eg. osql -E -Ssystem,1433)
Where -E = windows authentication
-S...
October 30, 2007 at 6:07 pm
You can create database snapshots to read the readonly db. Refer the below links.
October 30, 2007 at 5:45 pm
You can do the same in 2005 also.
Go to the 4th screen of the scripting wizard, here you can select the script option then select "file per object" option ,...
October 30, 2007 at 5:33 pm
Try the following command.
sp_attach_db 'dbname','y:\xxx\Data.mdf','y:\xxx\Data2.ndf','y:\xxx\Log.ldf'
Before executing change the dbname with correct database name and change the path y:\xxx with the correct path where the file exists.
October 29, 2007 at 2:41 pm
Can you check the connection manager inside the Maintainence plan whether its connecting correctly.
October 29, 2007 at 1:57 pm
What is the file extension you are holding??
If you have .mdf and .ldf files then you can use sp_attach_db stored procedure to attach the db
If you have .mdf file alone...
October 29, 2007 at 1:54 pm
Refer the below links
GUI ----> DTExecUI.exe
http://technet.microsoft.com/en-us/library/ms141707.aspx
Commadline utility ----> DTExec.exe
October 29, 2007 at 4:37 am
2.)You can't drop the caching database when the database is in use, hence you need to kill caching database connections and then try to drop the db. I think this...
October 28, 2007 at 7:01 pm
[font="Courier New"]Refer the below link for more on the topic
http://www.databasejournal.com/features/mssql/article.php/10894_2197931_1[/font]
October 28, 2007 at 1:56 pm
Check the below forum for why not to shrink the db
http://www.sqlservercentral.com/Forums/Topic412213-169-1.aspx
October 28, 2007 at 1:54 pm
[font="Courier New"]You can do the following
$) Open the DTS in source server
$) Save the DTS as structured storage file (i.e dtsname.dts)
$) Copy the file to the destination server
$) Right click...
October 28, 2007 at 1:50 pm
Yes thats right, it will create the physical files and then start restoring the db
October 28, 2007 at 1:46 pm
[font="Courier New"]You can convert current date as you required by below piece of code
select convert(varchar(25),getdate(),101)
You can change the last variable value from 101 to 121 and each value represent one...
October 28, 2007 at 1:43 pm
MS won't release SP5 for SQL2k since official support for SQL server 2000 will be ended by mid of 2008.
October 28, 2007 at 2:09 am
Try connecting the servername in FQDN format else use ip address as shown below
Eg.) servername.eur.nsroot.net,1433 -->FQDN servername
169.187.0.25,1433
October 28, 2007 at 2:06 am
Viewing 15 posts - 271 through 285 (of 349 total)