Viewing 15 posts - 256 through 270 (of 387 total)
what version of sql is running on the server, what service pack is running on sql?
March 15, 2006 at 1:43 pm
You can use DTS to do this by using the execute sql task and running sql for whatever connection you need to use.
March 15, 2006 at 1:37 pm
The log file to be deleted needs to be empty before deletion, use this script to get what you need.
DBCC
SHRINKFILE ([YourTransLog]
March 14, 2006 at 1:16 pm
Have a look at http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=4&messageid=175213
He provides a bunch of user defined functions that may help you out.
March 13, 2006 at 1:58 pm
GilaMonster,
Thanks for pointing out the MS article, having an issue on a stage box that this cleared up a treat.
March 10, 2006 at 11:22 am
I used to have an issue like this when I was using quest spotlight to monitor some of my servers, I would issue a kill command from a script but...
March 9, 2006 at 1:37 pm
it is most likely ascii characters, you should be able to use the ascii function in conjunction with the replace function to get rid of these. Should be...
March 6, 2006 at 12:25 pm
if you have a version of 2005 running on a machine other than production, why not create an sp that has the
exec sp_procoption N'procname', N'startup', N'true'
GO
set and have the...
February 28, 2006 at 11:57 am
look up xp_cmdshell in bol, the sql job will be an operating system type
February 24, 2006 at 1:47 pm
should be xp_sendmail
February 24, 2006 at 1:07 pm
You can use LogParser (free from MS) to do a simple query of the event log and insert the results into a table. If you gather...
February 24, 2006 at 1:07 pm
This is assumming that the null character is trailing, you will most likely need to rework this if the null catcter is anywhere in the string.
February 21, 2006 at 10:38 am
Try this, could probably write it in a loop, bit brute force but should give you what you need:
update
TableName Set ColumnName
February 21, 2006 at 10:35 am
Viewing 15 posts - 256 through 270 (of 387 total)