Viewing 15 posts - 14,836 through 14,850 (of 22,227 total)
This is a case where using a cursor makes sense. I load a cursor and then build my backup statements with dynamic sql. That way you can specify location, file...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 15, 2010 at 12:11 pm
Yeah, NDA's are easy. It's Non-Compete's that I worry about.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 15, 2010 at 8:55 am
It's a legal compliance within what should be your standards anyway... sign it. No big deal.
You just have to be careful about language. I had a company that wanted me...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 15, 2010 at 7:36 am
Yes, it's absolutely possible that you're seeing contention. That much contention though would be a bit concerning. What is running on the systems that could block a shared lock for...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 15, 2010 at 7:15 am
With just straight TSQL you'll have to backup the databases serially. That's how most everyone I know does it. That's how I do it. It is possible to backup in...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 15, 2010 at 6:58 am
In general, I'd recommend against using dynamic SQL. That said, there are some very good situations where you should use it because it solves problems like dynamic search or other...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 1:33 pm
Depending on the situation, I believe that table locks could perform better, whether or not you should use them is a second discussion.
But in general, your beliefs about how SQL...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 1:23 pm
sudhakara (6/14/2010)
Dave Ballantyne (6/14/2010)
Best advice would be to get SQL2008 internalshttp://www.amazon.co.uk/Microsoft-SQL-Server-2008-Internals/dp/0735626243
Thanks for your reply.
Searched on the book but i could not find any chapter related to the data...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 11:40 am
I think that you ought to try letting SQL Server manage the locks for you rather than trying to control it using lock hints.
Without more details on what was being...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 9:33 am
It's the identifier for a connection. There is no relation to the connection string or to any machine connecting to the server, except for the duration of the connection. You're...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 7:43 am
Brandie Tarvin (6/14/2010)
Spiritual support is also acceptible. But when you do get back into gaming... @=)
I'll make a point of it, it'll be the first purchase.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 7:38 am
Yep, Event Viewer through the Management interface.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 7:34 am
2nd vote for SQL Server Internals. Excellent book.
A secondary choice would be Christian Bolton, et al, SQL SErver 2008 Internals and Troubleshooting. It's not as thorough as Kalen's book regarding...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 7:33 am
In most places you'll need to bracket key words to use them within structures like that. Can you do it? Yes. Should you do it? I'd say no, but at...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 7:30 am
And on top of what Paul says, are there other transactions occurring at the same time? This will further add to the overall size of the log during this operation.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 14, 2010 at 7:26 am
Viewing 15 posts - 14,836 through 14,850 (of 22,227 total)