Viewing 15 posts - 1 through 15 (of 22 total)
I've rolled out a refactor of our wind tunnel metrics database system, which was partitioned tables with row compression and is now partitioned views across separate databases with page compression....
August 23, 2013 at 9:55 am
Great article - we've used MERGE for some time and it reduces the CRUD burden considerably.
However, it should not be used if you are using transaction replication. We've found (and...
January 16, 2013 at 11:21 am
chapman.tim (10/1/2010)
October 1, 2010 at 9:15 am
You can achieve a similar result using Standard and views should your budget not stretch to Enterprise. Really it's horses for courses, if you databases are large enough to warrant...
October 1, 2010 at 3:33 am
Great article - glad you mentioned that horizontal partitioning is only available in the enterprise version.
However, I think it is worth mentioning that vertical partitioning is available in all flavours...
April 29, 2009 at 7:02 am
Alejandro,
I agree. The biggest problem with deep unit testing SPs is testing the results - it's not good enough to just check the output from the SP, you have to...
April 14, 2009 at 7:36 am
I'm not sure if this is really unit testing - it's more system testing. My understanding of unit testing is that you are looking at a specific routine (or maybe...
April 14, 2009 at 4:32 am
I agree - I am reluctant to have a mixture of versions. However, this affects alot of different systems as the distributor is central to them all. It's not easy...
January 5, 2009 at 8:19 am
I have found a possible reason for this. Merge replication uses triggers on the tables that are in the publication at both the publisher and the subscribers. These triggers are...
September 11, 2008 at 9:24 am
I've used application roles in the past to allow users read only access via their login (actually I use AD groups so only need to create them once) for reporting...
July 25, 2008 at 9:38 am
I know this is an old post but it caught my eye as this is exactly what I'm testing.
In SQL2005 you can insert a token at any time via replication...
July 15, 2008 at 1:06 am
Unfortunately I've changed contract since this posting so can't check what the settings are now on the database. From what I recall I turned off all the replication of objects...
April 21, 2008 at 4:10 am
Turning off the auto-statistics on the destination database worked for me, and performance is fine for my needs. So not pursued this any further.
April 18, 2008 at 12:06 pm
I've no problem writing the SQL from scratch, however the requirement for this is to replace a maths engine that a user edits. So the user enters statements that I can...
August 30, 2007 at 7:33 am
Thanks for that - I'd already considered it but it would restrict the current usage and there are maths statements that it would not work for. I've over-simplified the example...
August 30, 2007 at 6:45 am
Viewing 15 posts - 1 through 15 (of 22 total)