Viewing 15 posts - 91 through 105 (of 207 total)
Can you leverage SSIS and the ForEach container to loop through each table in a database and generate a script?
May 3, 2006 at 7:29 am
Just as an FYI, we were told by Scalability Experts to skip AS 2000 and go to AS 2005 due to the amount of changes. I have also attended some...
April 25, 2006 at 6:33 am
To answer your question, you need to use DynamicSQL to create your table on the fly. Checkout sp_ExecuteSQL in books online. I would not recommend using this in a production...
April 24, 2006 at 6:38 am
I used to work for Diamond Comic Distributors in one of thier warehouses. That job was a blast. I got to work with my friends and my brother, was able...
April 14, 2006 at 10:01 am
I would alter the UDF slightly to avoid the cursor:
SELECT @AllFood = Food + ',' + @AllFood
From aisTable1 with(nolock)
Where Name = @Name and Age = @Age
RETURN LEFT(@AllFood,LEN(@AllFood)-1)
April 11, 2006 at 6:23 am
Another option is to:
March 30, 2006 at 7:27 am
It's a little difficult to do QA on a data warehouse without knowing the data. You will need to know the business rules for the ETL process and have access...
March 29, 2006 at 7:13 am
Is the column that is being exported an integer? If so, try converting it to a varchar in the select statement and see if that helps.
If you could post...
March 28, 2006 at 7:50 am
I know this may sound like something stupid to check, but I know I have done this before.
Is your source correct? I had an incident when I first put a...
February 9, 2006 at 6:52 am
If this is specific to SQL Server 2005, it should have been stated in the question. I answered 8000 because, that is what the limit is in SQL 2000. More...
February 7, 2006 at 8:37 am
Bravo Steve. I would have done the same thing. I believe he was experiencing the ID10T error.
Cliff
February 3, 2006 at 8:10 am
There are two approaches you can take.
1) If you are not doing transformations on the data in question, use a data flow task with a straight copy of rows using a...
February 2, 2006 at 7:01 am
Within our system we restore the databases on a daily basis and merge data using an ETL process to grab the data we do not have yet. This is for...
January 31, 2006 at 10:58 am
We also use DTS for our ETL solution and have found it is efficient for our needs. The price was right as well. if you are working on a budget,...
January 27, 2006 at 7:22 am
I'll take a stab at it and say th script is not aware of the "AppleOutputBuffer" object as I see no reference to it within the code.
Cliff
January 25, 2006 at 7:26 am
Viewing 15 posts - 91 through 105 (of 207 total)