Viewing 15 posts - 136 through 150 (of 371 total)
Thanks to Craig for the question and Paul for the link to Kalen's article.
It's really good to know that SQL Server will exclusively lock the pages that were truncated until...
February 7, 2012 at 7:33 am
Sorry then, I thought that he was after an "unique ID" and that a UNIQUEIDENTIFIER would be an option but as almost everyone here said NO to using a UNIQUEIDEINTIFIER...
February 1, 2012 at 4:54 pm
Brigadur (2/1/2012)
L' Eomot InversΓ© (2/1/2012)
February 1, 2012 at 4:06 pm
Hi, guys.
Adding an IDENTITY column wouldn't solve his problem?
ALTER TABLE dbo.TableObject ADD Id INT IDENTITY UNIQUE;
February 1, 2012 at 3:49 pm
I once had faced the same network related problem and was able to solve it by changing the service which the SQL Server process connected with to Local Service or...
February 1, 2012 at 3:40 pm
I would have chosen "All of the above" if it wasn't for two contradictory options. π
February 1, 2012 at 8:01 am
Excellent article and highly practical examples! Thank you!
One question though: when having to restore to a specific point in time using STOPAT can I trust the "BackupStartDate" column returned by...
January 29, 2012 at 7:56 pm
Loved the question and got it right because I had issues with some old code before.
Thank you for this straightforward question!
January 26, 2012 at 7:56 am
Could you please give my point back if possible? π
I answered YES on the spot. I didn't know that there's a situation where one of them would fail though.
Great question...
January 25, 2012 at 3:34 pm
tfendt (1/24/2012)
I was just going to replay with that as a better version π
I deserve to be punched for that.
I was trying to destroy a mosquito with a nuclear weapon....
January 24, 2012 at 3:07 pm
I've never used the HashBytes() function so I learnt something new.
I got it right at first because of logic thinking but the options had me wondering and I had to...
January 24, 2012 at 3:00 pm
And a more simplified version of Example 2 below: :blush:
SELECT YEAR(SaleDate) AS Year,
SUM(CASE MONTH(SaleDate) WHEN 1 THEN SaleProfit ELSE 0 END) AS Jan,
...
January 24, 2012 at 2:52 pm
zuber.patel (1/24/2012)
The Article is really helpful, just want to know how we can display data in horizontal form like
...
January 24, 2012 at 2:46 pm
A really good question anyway. Thank you, Steve.
I never thought about using Resource Governor to limit CPU on a database backup.
Sometimes making a backup will eat almost 100% CPU and...
January 23, 2012 at 7:47 am
Viewing 15 posts - 136 through 150 (of 371 total)