Viewing 15 posts - 1,711 through 1,725 (of 7,614 total)
SQL often "parses ahead" for errors. SQL detects that the db doesn't yet exist and so can issue errors.
I usually use dynamic SQL to get around these types of errors:
April 9, 2021 at 6:16 am
Since we have NO previous knowledge of your tables and how they're used, we need specifics to make any reasonable judgements. It's rather frustrating when we ask such things to...
April 9, 2021 at 5:27 am
We have dedicated Sr. People for optimization and they have been doing it for more than a decade for some good clients. So we trust their understanding for...
April 9, 2021 at 3:50 am
That's correct. You don't even need to include Operations.OpOrder in the SELECT results and you can still ORDER BY it.
April 8, 2021 at 8:41 pm
In general, you can exec the proc that way.
However, since that proc does absolutely nothing, you'd be better just removing all the code that execs it.
April 8, 2021 at 8:29 pm
I still have my doubts on the clus index keys. But you could be right.
By the way, are most of the tables clustered on an IDENTITY column? If so, you...
April 8, 2021 at 6:36 pm
3. Thanks for this idea. Not sure if DBA have used page compression. Need to check. Won't it consume more CPU?
Yes, you're quite right, it will use more CPU. ...
April 8, 2021 at 6:34 pm
Oracle used to use Grid (which is much more powerful than just the cluster setup in SQL Server). But big $$$$$$$.
April 8, 2021 at 4:03 pm
Could you use SQL Developer Edition? If it's business prod, you can't, but if it's just something you're doing on your own, you can. And that edition has full capabilities.
April 8, 2021 at 4:02 pm
that is where some disagree.
on my 1500 production db's 220 have RCSI enabled - and most new db's are being created with it enabled unless the team requesting...
April 8, 2021 at 3:24 pm
Oh BTW, On top of compression, you may also want to fiddle around with following settings to see what works best for you !
--Media Set Options
...
April 8, 2021 at 2:58 pm
(1) As always, the first step is to make sure you have the very best clustered index on every table of significant size. That is not an easy thing to...
April 8, 2021 at 2:53 pm
Hmm, the first part of the Answer you chose is correct. But keep in mind that the second part, the "P.S.", is not.
April 8, 2021 at 2:39 pm
that is where some disagree.
on my 1500 production db's 220 have RCSI enabled - and most new db's are being created with it enabled unless the team requesting it...
April 8, 2021 at 2:31 pm
(1) Have you page compressed any (or better yet all) of the really large tables? And used COMPRESS/DECOMPRESS if it's clob data? [If you're on SQL 2016+ then even Standard...
April 8, 2021 at 3:08 am
Viewing 15 posts - 1,711 through 1,725 (of 7,614 total)