Viewing 15 posts - 11,566 through 11,580 (of 11,677 total)
Construct your SQL Statement in a variable of type string.
Something in the like of:
REPLACE("
select * from <DB_Source_Name,,>.myTable where colA = 'Test'
",
"<DB_Source_Name,,>", (DT_WSTR,50) @DB_Source_Name)
In this code snippet, @DB_Source_Name is a...
April 7, 2010 at 6:53 am
aharmon-1091890 (4/6/2010)
April 7, 2010 at 12:04 am
You could use a script component/task to write the data to the different .csv files. You can find code snippets for doing this all over the web. The only thing...
April 6, 2010 at 8:03 am
Bru Medishetty (4/2/2010)
I am using OLE DB Destination and I do not have table or fast load option for data access mode. The property you mentioned...
April 2, 2010 at 8:43 am
What is the value of Maximum Insert Commit Size? If it is equal to 0, SSIS will try to insert all the rows in one single transaction.
April 2, 2010 at 7:35 am
What does your SSIS package do?
Does it do a simply reading of the data residing in the SQL Server and writing it to the Oracle Server, or are there other...
April 2, 2010 at 6:39 am
kanth.vishal (3/26/2010)
April 1, 2010 at 6:13 am
Read the 4 articles on SSAS deployment here at SQLServerCentral, starting with this one:
http://www.sqlservercentral.com/articles/Analysis+Services+(SSAS)/69467/
March 31, 2010 at 7:16 am
Quote from MS TechNet:
By default, an attribute hierarchy is created for every attribute in a dimension, and each hierarchy is available for dimensioning fact data. This hierarchy consists of an...
March 31, 2010 at 7:10 am
divyanth (3/24/2010)
March 26, 2010 at 1:47 am
Phil Parkin (3/24/2010)
That is incorrect. Full debugging features are available for script tasks - I think you are getting confused with script components.
Ah, then I'm indeed mistaken. Thanks for correcting...
March 24, 2010 at 2:07 pm
Where are you trying to do this? Directly in the property field?
To use variables in your arguments, you must set the argument through an expression.
See the the third tab Expressions...
March 24, 2010 at 7:24 am
It is not the account of the user that created the job that is used to execute the job, it is the account of the SQL Server Job Agent. See...
March 24, 2010 at 7:18 am
Unfortunately, I have zero experience with 2000.
Maybe someone else?
March 24, 2010 at 5:15 am
Ah, yes, you could store the first line of the file in a seperate array and use that one to create the column titles.
It is not really using arrays in...
March 24, 2010 at 4:25 am
Viewing 15 posts - 11,566 through 11,580 (of 11,677 total)