Viewing 15 posts - 6,886 through 6,900 (of 19,564 total)
Is your etl performed through stored procs or is it done through SSIS or something else?
February 8, 2012 at 3:15 pm
As Gail said, please give us more info. Anything provided without that info us just a guess.
February 8, 2012 at 3:11 pm
Here is another alternative. Kraig posted his while I was typing up my solution.
DECLARE @TestClient table
(ID int,
InternalCode nvarchar(100))
DECLARE @PartTwo TABLE (ID Int, subID Int, Somevalue nvarchar(100))
Insert into @TestClient...
February 7, 2012 at 4:47 pm
You would need to move each NC index individually using the same method that Gail showed.
February 7, 2012 at 4:24 pm
Jeff Moden (2/7/2012)
xRafo (2/7/2012)
Thanks to all,this query can execute with -while statement-?
Yes... it can. Why would you want to use slower code for this, though?
Taking this set based query...
February 7, 2012 at 4:22 pm
When doing this, make sure you know if any columns have off row data (LOB). If so, you will need to recreate the table in the new filegroup using...
February 7, 2012 at 4:04 pm
Elliott Whitlow (2/7/2012)
February 7, 2012 at 3:58 pm
Oh but you do. You should avoid using shorthand like that. Explicitly define your columns is the better route. If you don't then you can't add columns...
February 7, 2012 at 3:52 pm
sqlfriends (2/7/2012)
February 7, 2012 at 3:50 pm
This will let you know what the perms are. And as an added bonus, I am leaving in the script portion that can help recreate the perms. I...
February 7, 2012 at 3:29 pm
explicitly name your columns and avoid the use of Select *. Also, columns can be aliased to a new column name.
February 7, 2012 at 3:17 pm
Viewing 15 posts - 6,886 through 6,900 (of 19,564 total)