Viewing 15 posts - 2,086 through 2,100 (of 13,849 total)
A more refined alternative, which does not run the risk of losing rows through aggregation:
SELECT t.Field0
,t.Field1
...
April 23, 2021 at 7:19 am
Another alternative
SELECT Field0
,Field1
,Field2
,Field3
,Field4...
April 23, 2021 at 6:36 am
Any thoughts on how can we accomplish this?
None whatsoever. You haven't provided DDL, sample data in the form of INSERT statements and desired output based on your sample data, nor...
April 22, 2021 at 3:06 pm
I solved the above by simply changing the datatype in SQL Server table to NVARCHAR... again thanks for all the help!
Well done, but for future reference note that...
April 20, 2021 at 5:42 pm
By 'betting', did you mean 'better'?
WinSCP is actually a rather good solution.
But if, by better, you meant easier to configure, I'd recommend this: https://www.cozyroc.com/ssis/file-transfer-task.
It's not free, but works well...
April 20, 2021 at 5:34 pm
Also if I wanted to pass a literal string to a SQL field via SSIS do I just add another variable and assign the literal value to pass...
April 20, 2021 at 4:40 pm
(DT_DATE) should do the job.
April 20, 2021 at 4:29 pm
One more thing I changed my expression to (DT_Date)(LEFT(RIGHT(@[User::FileNameDate],14),10)) to convert to a date but it returns format like: 3/31/2021 (?) Are there other ways to convert the...
April 20, 2021 at 4:00 pm
Considering you said earlier:
The file names are always in this format: "ConvoEVQ2021-04-05"
Assuming that there is no extension, what's wrong left LEFT(User::FileNameVariable,10)? For the above that'll be 2021-04-05. You...
April 20, 2021 at 9:36 am
Please take a read through here for a detailed walkthrough.
April 19, 2021 at 4:17 pm
Thanks... within my Loop container I placed an "Execute SQL Task Editor" but I'm having trouble with its needed syntax in the SQL Statement and the Parameter Mapping......
April 19, 2021 at 3:04 pm
In your Foreach container, you will configure a variable to be assigned the name (optionally the entire path) of the file being processed on the 'current' loop iteration. That is...
April 15, 2021 at 9:24 pm
This should give you an idea.
In the Variables pane, I created a variable called FileName and assigned its value.
Then I created the variable FileNameDate and assigned its value as an...
April 15, 2021 at 6:35 pm
Found the Derived Column Transformation but do I type in my SQL to get the Date from the file name into the "Expression"?
No, you need to use SSIS's...
April 15, 2021 at 4:47 pm
It's simply not there
Do you have all the other Data Flow tools? Conditional Split, Merge, Multicast etc?
April 15, 2021 at 4:16 pm
Viewing 15 posts - 2,086 through 2,100 (of 13,849 total)