Viewing 15 posts - 1 through 15 (of 28 total)
What is your Target server set to in VS?
September 22, 2022 at 12:35 pm
I miss read the question. I am importing a flat file with header and detail records to the database. Strike my answer.
September 15, 2022 at 3:28 pm
Timing is everything. I have a similar project except it uses flat files with header and detail records. My problem was that the header would not get saved before the...
September 14, 2022 at 4:14 pm
A few years back I had a similar issue of finding abnormal values in a table. I found some articles about how to identify Gaps and Islands a in data. ...
September 6, 2022 at 12:48 pm
T
I provided the solution. If it is not the solution, please tell me why, thank you.
Phil, You have gotten me closer than I have been. Your solution was...
August 25, 2022 at 2:32 pm
I know its kind of forced in that, we use whatever the PC_CompType's are on first Package, for all the packages in the set. I think maybe we should just...
August 23, 2022 at 10:29 pm
Wow, that's a very good article Jeff, comparing Pivot to Cross Tabs. I was noticing all your Pivots always have aggregate functions. What I am doing seems to involve grouping...
August 23, 2022 at 9:28 pm
Phil, its not that your solution didn't have merit. I was able to jazz it up by using a UNION, got close but no cigar. Still the issue with the...
August 23, 2022 at 8:27 pm
Thanks for your reply Phil, Someone suggested PIVOT would do this, so I was trying to figure out how to do that. While this would be the answer if the...
August 23, 2022 at 7:17 pm
Yes you are right EBCDIC and ASCII have different binary value sets. For example, "a" is less than "A" in EBCDIC, but "a" is greater than "A" in ASCII. Numeric characters are less than any alphabetic letter in...
June 15, 2022 at 1:20 pm
I believe that Phil is correct. When we updated from 2008 to 2019 I tried several versions of VS. For me VS 2016 was where I found our SSIS packages...
June 8, 2022 at 11:29 am
Are you sure it sounds like you want "9-12 2021" as in September-December 2021.
Select MIN(Month), '-',MAX(Month), Year
or
SELECT Select MIN(Month), '-',MAX(Month), '-' Year
March 21, 2022 at 5:35 pm
There is a STRING_Split function. If you are using a SSIS package why not use a Script component to split the string? Its the easiest way to get what yo...
March 21, 2022 at 3:48 pm
Unfortunately Automated\Custom aren’t in the same realm. You can use Scrip Table as in SSMS. Then order you columns in the order you want. Combine them in one query with...
March 3, 2022 at 1:51 pm
One would think any programming language will do a character by character compare when dealing with Character fields. Someone once told me, "Searching on Numeric data is always faster". I don't...
March 2, 2022 at 2:19 pm
Viewing 15 posts - 1 through 15 (of 28 total)