Viewing 9 posts - 1 through 9 (of 9 total)
I learnt the term idempotent a few years ago, even though I ensured my code was re-runable long before that.
Personally, I don't trust version numbers in a database, they are...
May 7, 2015 at 3:22 am
There's been so much this year, I really can't decide out of three big ones:
1. Moving a production system to Azure with AlwaysOn, first steps into the cloud
2. Being solely...
December 27, 2013 at 9:31 am
I agree with many other posters, it's too narrow and I have to scroll too much.
I would also recommend not following design guidelines laid out by Microsoft, there's not been...
July 3, 2013 at 10:36 am
I used to be a Sys Admin and fell into administering SQL Server at the same time, I'd only worked for smaller businesses at the time. Because the network wasn't...
March 1, 2013 at 8:53 am
Thanks for the info Daniel. I think I'll not reseach SSAS any further.
I'm going to:
1. Configure CDC
2. Use SSIS to import the changes into history tables in the reporting database
3....
September 21, 2012 at 3:22 am
ron.mcdowell,
I've set @Cmd to NVARCHAR(MAX), the limitations of sp_executesql are only that of server memory or 2GB.
The number of rows is irrelevant as the @Cmd value only has the column...
October 10, 2011 at 2:53 am
This will still work in SQL 2005, not in 2000 as I've used FOR XML.
I should probably check the dates a little better next time though, I only looked at...
October 7, 2011 at 2:52 am
You can accomplish the same task using a set based approach which should perform considerably quicker.
It does work with text and ntext data types, but not image. I have no...
October 7, 2011 at 2:37 am
Contest Entry
/*----------------------------------------------------------------
Query #1 & #2
----------------------------------------------------------------*/
-- Assuming you have a unique ID for each article.....
CREATE UNIQUE NONCLUSTERED INDEX idx_AnalysisLog_ArticleID ON dbo.AnalysisLog (ArticleID) INCLUDE ([Count]);
GO
-- Wrap in a transaction to ensure multiple...
August 2, 2011 at 9:31 am
Viewing 9 posts - 1 through 9 (of 9 total)