Viewing 15 posts - 181 through 195 (of 203 total)
I wrote a small stored proc for job monitoring.
This is usefull when you are not present in office (specially weekends) and you want to know whether all jobs run...
December 24, 2003 at 4:27 am
I always wanted category namme to be customised. Didn't knew that EM has got option to manage Categories.
Good one.
December 24, 2003 at 4:04 am
1. NET STOP is a Windows OS command & not a TSQL command. so you have to run it from a command prompt or bacth file.
2. ADO can shutdown SQL...
November 20, 2003 at 4:52 am
infact,
MS EM allows you to see and copy and save the script that EM will execute in order to do the change.
just click on 3rd icon on toolbar of...
November 20, 2003 at 3:27 am
yes, both this ways exists !!
net stop MSSQLServer
and
objSQLServer.Shutdown ( TRUE ) -- for normal shutdown
objSQLServer.Shutdown ( FALSE ) -- for immediate shutdown
November 20, 2003 at 3:06 am
I did the same,& found it working well.
also make sure that SQL service Account has access to the paths / files specified.
sp_attach_db N'test' , N'c:\Program Files\Microsoft SQL Server\MSSQL\Data\test_Data.MDF', N'c:\Program...
November 17, 2003 at 9:29 pm
BOL says
If you attach a database to a server other than the server from which the database was detached, and the detached database was enabled for replication, you should run...
November 17, 2003 at 9:16 pm
I am also currently in a process of creating some scripts for Multi-server Admin. Although I manage only 6 servers now, the number will soon increase.
This are some of ideas...
November 17, 2003 at 4:32 am
SQL Resource Kit 2000 has got a tool called Bulk Image Insert (BII). Use that.
November 14, 2003 at 11:00 pm
I actually haave used a command line dialer program called AutoDial.
I used it to connect & disconnect to /from internet within a DOS BATCH file.
see if it supports VPN...
November 14, 2003 at 6:30 am
Before attempting any of this solutions below make sure you have done following
shutdown server , copy ur mdf to some other location (as a backup) & also have a master...
November 14, 2003 at 6:23 am
I have checked SQL Agent Log. It says "[353] Mail session started (using MAPI1)".
so The mapi profile does not seem to be an issue.
November 14, 2003 at 3:43 am
may be u can simplify your plan by ommiting installation instructions, by creating setup settings files ( *.iss ) refer to BOL or setup disks for this.
November 13, 2003 at 5:45 am
small correction
Update TELESCRP
set xpriority = 99, xcallback = NULL
from TELESCRP , TESTSQLVW , DONTDIAL.dbo.DontDial,
where
TELESCRP.XTELELINK = TESTSQLVW.XTELELINK
and
DONTDIAL.dbo.DontDial.Phone
in ( TESTSQLVW.phone, TESTSQLVW.phone1, TESTSQLVW.phone2, TESTSQLVW.phone21, TESTSQLVW.phone3...
November 13, 2003 at 5:13 am
Try this
Update TELESCRP
set xpriority = 99, xcallback = NULL
from TELESCRP , TESTSQLVW , DONTDIAL.dbo.DontDial,
where
TELESCRP.XTELELINK = TESTSQLVW.XTELELINK
and
DONTDIAL.dbo.DontDial.Phone
in ( phone, phone1, phone2, phone21, phone3...
November 13, 2003 at 5:07 am
Viewing 15 posts - 181 through 195 (of 203 total)