Viewing 15 posts - 1 through 15 (of 157 total)
Do you see valid values when you preview you the data from the Flat File Source .. If yes, Then also check the data while importing by using a data...
August 16, 2010 at 2:33 pm
You will need to use a Derive Column transformation after the Flat File source
In derived Column add a new column and In the Expression field you will need to write...
August 16, 2010 at 10:21 am
I would suggest using a SELECT that CELKO suggests as updating is always expensive..But if you still want to below is the code
UPDATE TableName
SET ColName = CAST (CAST(ColName AS FLOAT)...
August 5, 2010 at 7:44 am
you don't need to do that for all manually, use an update statement.. to update all values with 'E' in it using a case statement with Patindex
August 4, 2010 at 2:55 pm
Do you want to read the Complete data in that field or just the 30000 characters ? If you want to read complete field i might be able to...
August 4, 2010 at 1:17 pm
I believe you are using For Each loop to loop through the files.. So all you need to do is
1. Extract part of the FileName from the Filepath using Substring...
August 4, 2010 at 10:41 am
Drag and drop the Parameter on the Header .. It will display the value at runtime
August 3, 2010 at 11:41 am
Link below will help you create multiple sheets.. I have used the same method Raunak Suggested in the past and i think its a good work around if cannot use...
August 3, 2010 at 7:39 am
In look up you have Columns Tab where you map the Lookup Columns and also select the desired output columns where you can select the columns to be updated..
July 30, 2010 at 12:59 pm
you will have to use a lookup to find the matching entries and then map the Lookup Match Output to OLE DB Command transformation Task to update values passing...
July 30, 2010 at 8:06 am
I would suggest you to bring the values in as Varchar and convert them into Date using the Convert Task.. Also, change IMEX= 1 in the excel properties.. so that...
July 30, 2010 at 7:55 am
Firstly it needs to be C:\\ for it to work regardless of the scope as the backslash always requires an escape character before it i.e., "\"
July 29, 2010 at 2:05 pm
Novicejatt (7/29/2010)
HiI just add new rows to the table.
Thyanks
You don't need to update the view unless you have added new columns to your table, which you want to display using...
July 29, 2010 at 1:55 pm
It has to be done dynamically.. Let me ask you this 1st. how many weeks data do you want to display.. is it monthly or specific number of weeks from...
July 29, 2010 at 1:47 pm
you can definetly use a function in a join but without variables.. in case you want to use variables try using Dynamic SQL..
DECLARE @sql NVARCHAR(3000)
July 29, 2010 at 1:36 pm
Viewing 15 posts - 1 through 15 (of 157 total)