Viewing 15 posts - 31 through 45 (of 158 total)
jyoti_bhatt (6/7/2010)
Any ideas how I can load a excel file with a dynamic filename?
Will the folder have only one file? If so, just use a For Each Loop with *.xls...
June 8, 2010 at 7:45 am
what do you mean by a value?? Are you looking for something similar to this SQL statement below in ssis.
Select Convert(Varchar,Getdate(),109)
June 4, 2010 at 12:09 pm
Probably my explanation wasn't as good as BLOG's post.. 🙂
June 4, 2010 at 7:55 am
I would possibly take the below approach..
1. using script task collect all filenames and their time stamps if not part of the fileName
2. Load into temp table and then...
June 3, 2010 at 8:21 am
for some reason, I was under a wrong impression that its much faster compared to Sub Query.. Thanks a lot for Correcting Me Guyz 🙂
June 3, 2010 at 7:47 am
sachinrshetty (6/3/2010)
ssis task execute and then fails
I think its because of the Temp Table... Where are you creating the Temp table.I just see a Drop statement in your SQL code....
June 3, 2010 at 7:44 am
using a CTE instead of a sub query would improve the performance of the query
WITH CTE AS
(
...
June 2, 2010 at 2:34 pm
So the problem Should with the Code column.. Try using the below Exp
(!ISNULL(Code)) && ((Consumption) >= "0") && ((Rate) >= "0") && ((TotalAmt) >= "0")
May 28, 2010 at 9:14 am
As Zendada States you need to add a case statement bcz your syntax is correct but if its an Empty string it would have a len of -1 and returns...
May 24, 2010 at 3:02 pm
You will need to write a script to get the list of all the files and then store them in a variable and later load into a table.. I am...
May 24, 2010 at 8:35 am
You can use an OLE DB Command Task to update the values..
Your Parametrized SQL should look like this
Update TABLENAME
SET Column1 = ?
WHERE Column2 = ?
Check this Example :...
May 24, 2010 at 8:19 am
I would suggest you to use a FEL with a script task that would check the number of columns and then move it to a DFT with the Help of...
May 21, 2010 at 8:13 am
Once you select the server and the Data Access mode as Table/View OR Table/view fastload.. Beside the Name of the table or view you should see a NEW button..A click...
May 20, 2010 at 1:15 pm
Use a OLE DB destination instead and follow the same steps that you did for SQL Server Destination
May 20, 2010 at 12:52 pm
Viewing 15 posts - 31 through 45 (of 158 total)