Viewing 15 posts - 1,006 through 1,020 (of 7,429 total)
ALso, depends on what the script is for. I have scripts WCTP for paging, CDONT scripts, scripts to work with Excel objects, scripts that self reference the DTS packag for...
April 6, 2006 at 6:59 pm
Yes an no. Depends on how clean yor answer needs to be. Quick, possibly look at using sp_MSForEachTable
exec sp_MSForEachTable 'SELECT ''?'' TableName FROM ? WHERE ColA = ValA'
April 6, 2006 at 6:49 pm
Then look at SPID 1 and see when th server started. This is te primary connecton by the server management account. This will give you a start date and time...
April 6, 2006 at 6:44 pm
I do believe retry is an immediate retry and has nothing to do with starting a job. All of my jobs are set to 0 and whn fails continue to...
April 6, 2006 at 6:39 pm
They are meant as a cumulative and not for each. Only use these when you are tryin to determine what items may spend the most overall resource time an not...
April 6, 2006 at 9:06 am
1st I hve seen when the account SID in the DB does not match that of the Server login. Not uncommon at all.
2n however, I just have never come across...
April 6, 2006 at 9:03 am
The big thing is Readability. This is why the standards board approved the new syntax. It has been a pain in the past to debug queries which contained multiple tables especialy...
April 6, 2006 at 8:59 am
That is a question you will need to ask Microsoft. I do believe you can get a CAL version of 2005 and upgrade (at a cost) the CALs. But to...
April 6, 2006 at 8:54 am
You can do a
BACKUP LOG dbnm
WITH TRUNCATE_ONLY
which blows otu the ability to recover from the Transaction Log until you take another Full DB backup.
However it won't shirnk the fil...
April 6, 2006 at 8:51 am
First start with the basics. Defrag or rebuild the indexes. And capture the most intense queries to see why they are that way. Work with streamlining the current load first...
April 5, 2006 at 5:41 pm
See the following post.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=271272
April 5, 2006 at 3:17 pm
As I recall it writes it out when 1 of the following occurr
SQL Server is stopped (even if is a restart)
Trace is stopped
Trace reaches @maxfilesize
April 5, 2006 at 3:09 pm
To the absolute best of my knowledge the answer is NO. In fact I had someone in my group needing the very same thing. Ended up figuring it out myself...
April 5, 2006 at 2:59 pm
Sounds like you haven't gone into SQL Server and granted the gropu rights to login and any other permissions they should have.
April 5, 2006 at 2:56 pm
Viewing 15 posts - 1,006 through 1,020 (of 7,429 total)