Viewing 15 posts - 46 through 60 (of 297 total)
Make the filename use the international ISO format YYYYMMDD instead of that quaint american date format and you'll have no trouble at all. 🙂
September 14, 2023 at 4:07 pm
Grmbl, the /quiet installationswitch workaround for installing Access Ace drivers 32 and 64-bit side-by-side seems to have stopped working.
That's not the intent of the "quiet" switch. The intent...
September 5, 2023 at 4:33 pm
One comment: I hope the example table isn't an exact replica of your production table, because to use that many columns defined as nvarchar(max) just to be on the safe...
July 3, 2023 at 5:45 pm
... and here's my attempt at fulfilling your requirements:
/* Load the test data */
DROP TABLE IF EXISTS #SecurityUsers;
CREATE TABLE #SecurityUsers (
SecCode NVARCHAR(70) NOT...
May 20, 2023 at 8:01 pm
Have you changed the target server of the SSIS package to SQL Server 2019, done a Rebuild and deployment? If the target server of the package is still set for...
May 17, 2023 at 6:59 pm
This is not an aswer to your question, but...
Your criteria AND (ITPRDC != 'AX' OR ITPRDC != ' ') looks wrong to me. And it's not your use of the...
May 17, 2023 at 6:02 pm
i type wrong id
Yes, 'BL.2112.00627' isn't the same as 'BL.2111.00627', so not surprising that you may get different results from the two queries. 🙂
April 19, 2023 at 7:16 pm
As the OP want an opinion about the two code options presented, i.e.
Option 1:
DECLARE @strcol1 varchar(max), @intco11 int
SELECT @strcol1 += ','+CAST(col1 AS VARCHAR(20)), @intco11=col1
FROM (
...
April 11, 2023 at 6:58 pm
Or you could dispense with some paranteses, like this:
IF EXISTS (
SELECT DISTINCT UPC, U_PUBLISHER_TYPE
FROM [snapshot]
LEFT OUTER JOIN [item]
ON [UPC]=item.[ITEM]
WHERE item.U_PUBLISHER_TYPE IN ('PRPG', 'RMSP', 'RDSP')
EXCEPT
SELECT DISTINCT...
February 16, 2023 at 7:54 pm
Unless the "with the matching dates" is to be interpreted as a date range selection, in which case Jeff Moden's integer math would be needed to ensure that the 24...
February 15, 2023 at 5:04 pm
And now we're just waiting for Google's Bard chatbot to go to GA. Time will tell who is the more truthful chatterbox.
But Bard will probably not do any better, since...
February 7, 2023 at 7:40 pm
It apparently cannot make the distinction between "temp tables" and "temporary tables". It's seriously incorrect for what most of us refer to as "temp tables" and...
February 7, 2023 at 6:50 pm
It apparently cannot make the distinction between "temp tables" and "temporary tables". It's seriously incorrect for what most of us refer to as "temp tables" and seriously correct for...
February 7, 2023 at 6:01 pm
Sorry, but that's not valid JSON.
Generally, what most people do, is to flatten the structured JSON into one table, which can later be queried and grouped.
Alternatively you can also use...
February 7, 2023 at 5:34 pm
Dear All,
My one condition is working like if data exist than it should fail only one condition is pending that is "if data exists without qty, than qty should...
February 1, 2023 at 6:57 pm
Viewing 15 posts - 46 through 60 (of 297 total)