Viewing 15 posts - 61 through 75 (of 196 total)
Are you playing around with the SET FMTONLY ON\OFF settings in the proc or when executing the SQL?
September 13, 2009 at 8:13 pm
If u have a 3rd party source, want to write the conversion in VB.NET (script task), why r u trying to use ssis then? just curious?
September 10, 2009 at 7:35 am
Did u try using the TO_CHAR from the oracle query ??
September 10, 2009 at 7:30 am
I have found the checksum to be useful in some cases and unreliable in some. If the data set if distinct then the checksum function (of all rows stands good),...
September 10, 2009 at 7:29 am
Did u create a resultset [0] for the stored procedure output??
September 10, 2009 at 7:22 am
Do u have permissions to take backup on the other side?
September 10, 2009 at 7:19 am
Did u set EvaluateAsExpression property = TRUE on the variable?
July 22, 2009 at 2:57 pm
Have u had a chance to look at the Email Task ?? It is really simple. Connect your work items to the email task with a workflow condition and...
July 22, 2009 at 2:38 pm
In the where clause use the variable substitution
SELECT some date
From some table
WHERE MyDate = ?
Under Parameter mapping in ExecuteSQLtask add a new parameter, take the approp data type, and for...
July 22, 2009 at 2:33 pm
Create a variable and write code in script task or expression builder to change it every week (or put the code in the the OnPreExecute event of the package)
July 22, 2009 at 2:08 pm
U need 2 merge join transforms (1 for first 2 joins [TbaleA and TableB] and 2nd for the join of [TableA and TableB] and TableC
July 21, 2009 at 1:20 pm
actually u may get errors because of no values or null values.
Check out my blog for this section:
http://sqlscape.blogspot.com/2009_03_01_archive.html
It has the section to set the value correctly.
Hope it...
July 21, 2009 at 1:17 pm
SELECT @RowCountResult = Count(*) AS CountResult From Table Where name = 'Ryan'
July 21, 2009 at 1:15 pm
Add a Script task and print out the variable
Dts.Variables("VarName").Value.ToString()
See what is the filename..... mostly it is bringing the filname in an incorrect format, i.e. with\without full path descriptor.
July 20, 2009 at 1:03 pm
If you raise the error it should fail the package (Assuming that you have set the following properties FAIL PARENT ON FAILURE = "TRUE" on all tasks in the for...
July 15, 2009 at 10:48 am
Viewing 15 posts - 61 through 75 (of 196 total)