Viewing 15 posts - 2,716 through 2,730 (of 59,086 total)
Neither answer will work, because on one date there may be 1000 records and five on another, etc. The datetime value is different up to milliseconds for each row. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 22, 2022 at 7:21 pm
Maybe this ...
AND TMP.IFSC <> '' OR TMP.IFSC IS NULL
... should be this ...
AND (TMP.IFSC <> '' OR TMP.IFSC IS NULL)
???
--Jeff Moden
Change is inevitable... Change for the better is not.
September 22, 2022 at 1:30 am
I disagree. DATE, TIME and DATATIME2 match to the ANSI/ISO Standards. I do not have to play with PDP/11 clock ticks to fake a date, the temporal math is...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 21, 2022 at 10:10 pm
I think you need to start over. Google why we never use MONEY. Normalize this mess. neither table has a key at all. A calendar has an obvious key...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 21, 2022 at 8:13 pm
We have DATE data types, souse them and not the old Sybase datetime from UNIX. Does the status have to be contained in the temporal interval, or can it...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 21, 2022 at 6:21 pm
Won't the application still work if you install 2017 and simply set the compatibility level to 2016?
--Jeff Moden
Change is inevitable... Change for the better is not.
September 21, 2022 at 6:14 pm
wrote:That is battling. I was stunned by your affiliation. I'm happy to see a particularly subject. Altruisticly go to my blog and read it.
Spam incoming .....
Someone is running...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 21, 2022 at 5:05 am
@Eirikur: of course it is possible to do the calculation with bit shifting, reversing, converting to binary etc., but WHY? Just because it is possible and makes some old...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 20, 2022 at 11:21 pm
Good point Jeff, never used the functions for negative timestamps...
Unfortunately and as identified in point #2 of the Prolog of the article...
2. Many solutions don’t account for negative...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 20, 2022 at 10:13 pm
Is anything here part of ISO/IEC 9075:2016 (ANSI X3.135)? https://blog.ansi.org/2018/10/sql-standard-iso-iec-9075-2016-ansi-x3-135/
What parts of the SQL standard has Microsoft not yet implemented?
At the prices they charge for the...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 20, 2022 at 10:03 pm
With so little claimed knowledge on your part, I'm going to direct you to a tool that has help many both with and without experience. It's not a magic fix......
--Jeff Moden
Change is inevitable... Change for the better is not.
September 20, 2022 at 8:46 pm
Hello everyone!
I am in dire need of some assistance or direction. I am by no means a expert at any of this stuff. Unfortunately for me the company I...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 20, 2022 at 2:34 pm
I work on sql server 2019 i have table have 20 milion rows .
i need to export data Exist on table to only one file by using sql server...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 20, 2022 at 2:05 pm
Just a few more tests on the function you posted. Haven't done a deep dive on your code but, at first blush, it would appear that it doesn't like working...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 20, 2022 at 1:53 pm
i found a script. this can be close
You do realize that's not going to find any job that executes a stored procedure that executes xp_CmdShell, correct?
This sounds a bit...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 20, 2022 at 1:23 am
Viewing 15 posts - 2,716 through 2,730 (of 59,086 total)