Viewing 15 posts - 91 through 105 (of 152 total)
sure, this is a good way too... Thanks both for your quick help.
May 12, 2010 at 9:00 am
Yes this will help, ... I'll have to apply few more filters to restrict the result to desired columns and will be done... Thanks...
May 12, 2010 at 8:47 am
Thanks Eric...
I created a database with two file groups, primary(default) and secondary and then creating following table.
CREATE TABLE [dbo].[TestTable]( [ID] [int] NOT NULL,
[Line] [smallint] NOT NULL, ...
May 4, 2010 at 1:06 pm
Thanks Dan...
so we just use with collate clause with whatever collation we want in the Create Database syntax right?
May 4, 2010 at 12:24 pm
apart from above reply,
If those few million rows were inserted separately later, then the database mdf size might have grown to more extent for that operation and then probably backup...
April 29, 2010 at 11:33 am
April 29, 2010 at 11:26 am
Thanks for the info John,
I am not partitioning the table and creating any partition function and range etc. All I am doing is just separating data from one HUGE...
April 27, 2010 at 12:04 pm
Thanks Perry...
Is it possible to partition a large table with billions of rows into separate databases and not in different file groups with the same process I mentioned above. Can...
April 24, 2010 at 5:02 pm
I am aware of table partitioning where we create partition function, partition scheme and then separating the records in different filegroups based on the boundry values defined in partition function....
April 24, 2010 at 4:01 pm
Thanks Vidya...
So, what other ways are there for Horizontal Partitioning apart from table partitioning?
April 24, 2010 at 3:34 pm
Okay, let me see what I can do here... Thanks everyone for the help...
April 19, 2010 at 12:07 pm
Thanks Vidya and Lowell for your quick replies.
Due to complexity of the update operation, I am not able to split them in batches. will it be a good option if...
April 19, 2010 at 12:01 pm
would this work?
exec sp_msforeachtable "select * from ? where TestId = 100"
April 13, 2010 at 4:10 pm
Viewing 15 posts - 91 through 105 (of 152 total)