Viewing 15 posts - 841 through 855 (of 13,874 total)
Does Jonathan's (excellent) response solve your problem?
Make the filename use the international ISO format YYYYMMDD instead of that quaint american date format and you'll have no trouble at all. 🙂
+1, this has the added benefit...
Put the date into YYYYMMDD format before casting and it should work.
DECLARE @x VARCHAR(100) = '09142023';
SELECT @x
,SomeDate = CAST (CONCAT (RIGHT(@x,...
Here is a possible approach.
If you would provide just 10 rows of sample data, in consumable format, it would help a lot.
Presumably, your question is not this:
"Why are no results returned when I join on two columns containing values which do not match?"
What is your real question?
The issue is, all of these tables dont have primary/secondary keys, which i brought in with sl code.
Because these keys dont correspond to one another it gives me these...
Like this?
WITH ordered
AS (SELECT *
,rn = ROW_NUMBER () OVER (PARTITION BY adc.channelid ORDER BY adc.recordcount DESC)
...
You seem to have a lot of Postgres problems ... why not find a Postgres forum?
There is a button that says 'Code' in your icon bar. With >3,000 points, you...
Run the package in Visual Studio and add some data viewers in the data flow to find out what's going on and where the missing data is going.
I suggest changing...
Maybe it's something wrong with FireFox but I see no "stack trace" in the original post.
Here's a plain-text version for your delight:
SqlException: Snix_Connect (provider: SNI_PN7, error: 40 - SNI_ERROR_40)
Snix_Connect...
Any thoughts or suggestions on the above
As I said, with no ordering, my thoughts are that it's impossible, because the flag could be set against a different row every...
Viewing 15 posts - 841 through 855 (of 13,874 total)