Viewing 15 posts - 241 through 255 (of 326 total)
The choice of words was, in truth, a poorly written spec. It left way too much room for assumption. My "assumption" was that if there was a 3 way tie...
April 26, 2006 at 6:43 am
I would certainly attend a class given by one of you, although I much prefer Colorado (at any time of the year) to Florida.
April 11, 2006 at 7:29 am
I use this:
xp_cmdshell 'del /Q {your stuff here}'
The /Q means quiet mode and doesn't ask for confirmation.
April 4, 2006 at 6:25 am
you'll need to do it in a DTS package using using the copy object task.
March 31, 2006 at 6:20 am
Look at this:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/trblsql/tr_servtools_5cfm.asp
March 28, 2006 at 6:29 am
At the time I tested Litespeed it had (or has) a Native Command Substitution that loads as a service and capture native SQL maintenance plans as they execute re-routing them...
March 28, 2006 at 5:53 am
Utilicé a un traductor también. Otra cosa para mirar es la longitud media de la línea para cada disco físico en el perfmon. Si está sobre 2, usted tiene un...
March 24, 2006 at 7:03 am
To read the current SQL error log, you could use xp_readerrorlog. Dump the ouptput into a temp table and examine it for keywords. The output of the xp is a...
March 24, 2006 at 6:48 am
-- Begin Main procedure --
BEGIN
Open get_cases
WHILE @@FETCH_STATUS = 0 Begin
Fetch Next
From get_cases
Into @v_case_id
END
CLOSE get_cases
deallocate get_cases
END
March 23, 2006 at 7:14 am
As part of your process, you may want to think about adding a DTS/Transfer Login task from production to deveolopment. After restore, use the sp_change_users_login to link the users to the logins....
March 22, 2006 at 7:14 am
I don't know if this is typo in the post but you have a \\ in the path.
March 21, 2006 at 6:05 am
copy the sp_who2 proc into another and modify that one to return only what you want.
March 15, 2006 at 8:23 am
From BOL:
SQL Server requires that the WITH NORECOVERY option be used on all but the final RESTORE statement when restoring a database backup and multiple transaction logs, or when...
March 15, 2006 at 7:24 am
Viewing 15 posts - 241 through 255 (of 326 total)