Viewing 15 posts - 316 through 330 (of 417 total)
Can you tell whether it loaded all 16K files?
It sounds like it did all the work, but never reported to the screen that it had finished. Did you look at...
January 21, 2022 at 12:36 am
You will need an alias for the derived table containing the unions.
Just add "AS a" after the final close bracket/parenthesis. (Ironically the TIA from your message would probably have sufficed).
Without...
January 18, 2022 at 8:10 pm
Can you join to the other tables within the Merge statement so you have access to your codes?
This might be easier to implement as a CTE, but I don't like...
March 9, 2020 at 5:34 pm
I don't think you will be able to do it in a single query.
Here's how I would approach it. This is fairly vague, but the details will depend on the...
April 24, 2019 at 3:24 pm
Can you put a check constraint on both tables, e.g. ID <= 100. This can give you a "partitioned view". It works for =, but I have never tried it...
January 29, 2018 at 11:11 am
I had to do this last week. I found this forum thread and it gave me what I needed.
http://www.sqlservercentral.com/Forums/Topic1465444-279-1.aspx
October 31, 2016 at 12:44 pm
I think the excel connector relies on MS Office drivers being installed.
May 13, 2016 at 2:39 pm
I think you need the Access Database Engine.
https://www.microsoft.com/en-us/download/details.aspx?id=13255
This is worth reading.
http://www.madeiradata.com/load-data-excel-ssis-32-bit-vs-64-bit/
May 13, 2016 at 11:07 am
I think I'm as confused as you.
http://blog.nwcadence.com/sql-server-data-tools-clearing-up-the-confusion/
January 5, 2016 at 10:35 am
Maybe you need to look for SQL Server Data Tools that is part of SQL 2014?
https://www.mssqltips.com/sqlservertip/2804/introduction-to-sql-server-data-tools/
January 5, 2016 at 10:04 am
When that happens to me, its usually permissions. The job is typically run by the sql agent account which may not have access to something referenced in the package, like...
February 7, 2014 at 2:41 pm
Does it work if you export as a csv? If so, then its probably some excel devilry. If not, then perhaps permissions.
December 17, 2013 at 9:06 am
Have you set "Use 32 bit runtime" inside the agent job? Edit: Never mind, I see you did mention this.
http://1.bp.blogspot.com/-WHsiqaOI8gA/T8_GuvdMMZI/AAAAAAAAAPE/SoqxcClaSvI/s1600/ssis.jpg
December 17, 2013 at 8:02 am
Does this get what you need?
There is probably a cleaner way and I did modify one data value so that SubscriberNum 1234 would be D-D
SELECT *,
CASE
WHEN EXISTS (SELECT 1...
September 20, 2013 at 2:20 pm
Viewing 15 posts - 316 through 330 (of 417 total)