Viewing 15 posts - 226 through 240 (of 272 total)
Steve Jones - Editor (2/22/2010)
Steve Cullen (2/22/2010)
Wouldn't this be faster?Want to test with 10mm rows and let us know?
Too lazy 😛
February 22, 2010 at 9:39 am
If you're going to setup your table with a while loop, just for a set-based solution, wouldn't the direct while loop be quicker without the table? Such as :
declare...
February 22, 2010 at 9:33 am
temp tables are designed to be removed automatically when they fall out of scope.
I suggest you create a non temp table, if you wish to delete it when...
February 22, 2010 at 8:37 am
Rollouts are on Sundays but not during the first week of the month (financial company). Low-risk changes are usually on Wednesday afternoons after change control meeting.
February 19, 2010 at 10:12 am
My bad. Try:
exec SP_SOAC_REPORT_SUMMARY @FROMDT='01/01/2010',@TODT='01/02/2010'
February 19, 2010 at 9:53 am
Try:
exec SP_SOAC_REPORT_SUMMARY '@FROMDT=01/01/2010',@TODT='01/02/2010'
February 19, 2010 at 9:29 am
You could begin a transaction, update a record and then not commit until you want to end the lock.
February 19, 2010 at 8:35 am
Is there a specific question or a business problem you're trying to solve or accomplish?
So far, you haven't given anyone anything to go on. It's like saying...
February 19, 2010 at 8:30 am
Do you want us to quote you a rate?
That's as broad a question as I've ever seen here. You'll need to start with requirements.
February 19, 2010 at 7:28 am
Here's a start
DECLARE @PrincipalList TABLE (
PrincipalName nvarchar(255)
)
DECLARE @DbNumber int
SELECT @DbNumber = 1
PRINT 'DECLARE @PrincipalList TABLE (
PrincipalName nvarchar(255)
)'
WHILE @DbNumber <= 40
BEGIN
PRINT 'INSERT INTO @PrincipalList'
PRINT 'SELECT NAME FROM sqldb' +...
February 18, 2010 at 3:49 pm
I'm not getting that error.
February 18, 2010 at 1:45 pm
It's a lot easier to have backups, than to explain to someone why you don't, especially during DR.
February 18, 2010 at 11:22 am
Sorry. Didn't mean to sound nostalgic 🙂
February 18, 2010 at 9:45 am
Once upon a time, developers were concerned about developing with an eye toward backward compatability and cross-platform compatability. I don't see that much anymore.
There is no way to tell.
February 18, 2010 at 7:56 am
Viewing 15 posts - 226 through 240 (of 272 total)