Viewing 4 posts - 1 through 4 (of 4 total)
I think I may have gotten it..but if anyone has any comments, the T-SQL code is below
CREATE PARTITION FUNCTION [ProductArchivePF2]
(
datetime
)
AS RANGE RIGHT
FOR VALUES ('12/1/2010')
CREATE PARTITION SCHEME [ProductArchivePS2]
AS PARTITION [ProductArchivePF2]
ALL...
October 24, 2011 at 9:15 am
If that's the case, I could make them integers and just translate them using a look up table.
Thoughts?
October 14, 2011 at 6:35 am
Thanks everyone for you help. I really wanted to make sure I was headed in the right direction because our existing database(s) design is experiencing timeouts, deadlocks, and latency...
October 14, 2011 at 6:11 am
Thanks allmhuran for the reply.
I've looked at table partitioning but not exactly sure how to implement it because all the examples I've seen is by range, not a...
October 13, 2011 at 3:51 pm
Viewing 4 posts - 1 through 4 (of 4 total)