Viewing 15 posts - 16,291 through 16,305 (of 59,067 total)
My personal experience is that it's not going to matter much especially if you have performance challenged code. We went from 16 processors/non-SSD to 32 processors/SSD on all the...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 15, 2016 at 8:21 am
Why not do a full backup and point in time transaction log file backups? When you're ready, do a final full backup and continue the transaction log backups. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 6:00 pm
TheTrojan (11/14/2016)
As for the CASE, I was wondering whether it was better to use...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 3:16 pm
Iwas Bornready (11/14/2016)
Gary Varga (11/7/2016)
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 3:12 pm
psred (11/13/2016)
Can anyone tell me the quick way to copy a source table of 1.3Tb data to destination table with xml datatype column in source table.
Will the two...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 9:12 am
kevaburg (11/14/2016)
Jeff Moden (11/14/2016)
Title of this post:
Difference between MySQL and Oracle? What's better?Answer: SQL Server. 😉
and thus start the flame wars.... 😀
No... no flame wars. Considering that the OP...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 8:04 am
vs.satheesh (8/3/2016)
Some time I am getting timeout error.
That's likely the real problem. Such timeouts are normally because of code that has accidental many-to-many joins and folks trying to...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 7:43 am
Title of this post:
Difference between MySQL and Oracle? What's better?
Answer: SQL Server. 😉
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 7:37 am
Ed Wagner (11/13/2016)
Jeff, something tells me you had fun with this one. 😀
Many times over many years. 🙂
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 6:48 am
Rehan Ahmad (11/14/2016)
It works.:-)
By this way, we made a series where either 6 digits are same. Did we could do its alterate in SQL...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 6:44 am
This is "Death by SQL" in two ways...
SET DatabaseServer="SERVERNAME"
SET DatabaseName="DBA"
SET DbLoginID="sa"
SET DbPassword="@2008sql"
First, it indicates that the server does NOT have the "SA" login disabled... and it must. NO ONE...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 14, 2016 at 6:20 am
Shifting gears a bit, ROW_NUMBER() OVER is relatively expensive. The same DRY (Don't Repeat Yourself) principles that folks use in front end code also apply to T-SQL. It...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2016 at 3:24 pm
TheTrojan (11/13/2016)
-- if the parameter is 1000: 76 ms (instead...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2016 at 2:23 pm
Again, just to emphasize, this whole design of the originally stated problem, I wouldn't create either table in the current "horizontal" format. I'd make them both vertical and I'd...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2016 at 9:59 am
To be honest, this is a train wreck that happens every time that you bring new data in because you have to add columns to the [dbo].[namer_wf_test] table every time...
--Jeff Moden
Change is inevitable... Change for the better is not.
November 13, 2016 at 9:37 am
Viewing 15 posts - 16,291 through 16,305 (of 59,067 total)