Viewing 15 posts - 2,731 through 2,745 (of 13,853 total)
Just to rule out a NULL issue, try importing a test file containing 5 or 10 rows, with no NULLS in those columns.
April 17, 2020 at 3:17 pm
It looks like a NULL handling issue then ...
April 17, 2020 at 2:47 pm
"I'm scraping data ..."
What do you mean by this?
Your query is checking for the existence of columns in tables, and has nothing to do with data.
Is TempparsedHeaderCSVData a table? Maybe...
April 17, 2020 at 2:12 pm
To see the data interactively (and to do lots of other types of debugging), you need to run the package in Visual Studio.
You will be saving yourself a lot of...
April 17, 2020 at 2:07 pm
No matter how closely I look at those two columns, with the data from row 1, I cannot see any issue whatsoever. You can prove that to yourself by overwriting...
April 17, 2020 at 1:03 pm
Can you show us a couple of rows of actual data, indicating which are the new columns and which are those which import correctly?
April 17, 2020 at 3:09 am
...and the column report is created on is INT.
Thanks in advance.
Can you clarify what this means, please?
April 16, 2020 at 12:31 pm
Seems like you are trying to bend Git to work in ways it was not conceived for. Maybe it's not the right choice in your organisation.
Just so I understand what...
April 15, 2020 at 9:38 pm
DateCreated? DateModified? DateOfBirth? DateOfNextScheduledDentistVisit? ....
If it contains the date the row was created, you can do something like this
SELECT TOP (1000)
col1, col2, ...
FROM tbl
ORDER BY <DateColumn>...
April 14, 2020 at 10:45 pm
Why is the 'first table' being truncated? Best solution is to keep the data, or move it to an archive table, rather than deleting it.
If you delete it and you...
April 14, 2020 at 12:54 pm
Firstly, I think it would be slightly more accurate to say that you are moving to using Git as your VCS, with BitBucket as your cloud-based code-management solution.
Is the dev...
April 14, 2020 at 12:50 pm
Can you also show us what the data looks like?
If you want a working solution, you'll need to provide a script with sample DDL, INSERT (for data) and desired results.
April 14, 2020 at 12:27 pm
Thanks for the great example. What if I wanted to display the SSN's with the Table Names ?
Did you even read my answer?
April 13, 2020 at 10:34 pm
Thanks So Much For Your Help. I was wondering what will this stored procedure return if I the SSN doesn't exist in any table. Also I was wondering what...
April 13, 2020 at 9:33 pm
Viewing 15 posts - 2,731 through 2,745 (of 13,853 total)