Viewing 15 posts - 1,006 through 1,020 (of 1,248 total)
SQL Server 2005 Notification Services is a built-in component. It is not displayed in your computer services. Correct me if I am wrong.
March 14, 2007 at 9:38 am
How about
BACKUP DATABASE dbName TO DISK = '\\targetServer\$mapDrive'
You need to have authority to create a mapping drive in the above approach.
You can also create a database device first.
After backing...
March 14, 2007 at 9:24 am
How about
UPDATE tableName SET colName = ... WHERE colName LIKE '%1111'
?
March 14, 2007 at 9:16 am
Did you set your SQL Server Agent auto-start? You can set it either on the Windows services or the properties of SQL Server.
March 14, 2007 at 9:13 am
You may have to provide field names when values you provided do not match the default.
March 7, 2007 at 11:28 am
To truncate a file,
DBCC SHRINKFILE (FL_W20060730, EMPTYFILE)
DBCC SHRINKFILE (FL_W20060730, TRUNCATEONLY)
to truncate inactive logs,
BACKUP LOG dbName WITH TRUNCATE_ONLY
Are they helpful?
March 7, 2007 at 11:20 am
You should detach the passive node.
Do the hardware upgrade.
Add the node.
Failover the node.
Detach the passive node.
Upgrade the hardware on the passive node.
Attach the node.
March 6, 2007 at 2:35 pm
Did you try to run
RESTORE DATABASE dbName WITH RECOVERY?
March 6, 2007 at 2:31 pm
I guess you do not have privilege to view all columns in this table.
March 5, 2007 at 9:54 am
Changing complevel helps, but may not solve all of your issues. To know whether or not it fits your case, you need to do more tests.
March 5, 2007 at 9:52 am
You can set up your notification profile. It is not quite easy to build the notification profile on SQL Server 2000. You may use other tools to send email notifications....
March 5, 2007 at 9:48 am
Notification is one of tasks under SQL Server Agent. My suggestion is: start an alert and see if you are notified.
March 5, 2007 at 8:13 am
A script can do it in a snap. Look at the table, sysusers, in any database. Anyone, who has either dbo, sa, ..., can do it.
March 2, 2007 at 2:40 pm
Viewing 15 posts - 1,006 through 1,020 (of 1,248 total)