Viewing 15 posts - 1,291 through 1,305 (of 7,616 total)
This looks like it's supposed to be looking for the @current_proc_name value, not the literal string 'SOURCE', but then WTH do I know?
AND CHARINDEX('ALTER', @proc_source) <... September 7, 2021 at 5:20 pm
Ah... be careful. Changing the clustered index on the quick fly could cost you everywhere else.
How is that, specifically, when the current clus index is an identity column? You don't...
September 7, 2021 at 5:19 pm
When I used ERWin (as they spelled it at the time, IIRC) I thought it was excellent tool (once I got used to it). However, you have to understand data...
September 7, 2021 at 2:55 pm
Actually, Sergiy, for certain calcs -- such as computing interest on a house loan in some places -- it's illegal to use more than 4 digits of accuracy.
So,...
September 3, 2021 at 2:15 pm
For DELETE, a DENY DELETE should work.
For DROP, if the user created the table, they likely own it, so you'd have to use a DDL trigger for that AFAIK.
September 2, 2021 at 7:28 pm
Do you have a q?
September 2, 2021 at 7:25 pm
Actually, Sergiy, for certain calcs -- such as computing interest on a house loan in some places -- it's illegal to use more than 4 digits of accuracy.
So, if the...
September 2, 2021 at 2:23 am
Just change the clustered index. The other method is too much overhead and too much of a pain. A clus index change is a one-time thing. All the create-a-temp-table-and-then-join-to-it has...
September 2, 2021 at 2:21 am
How is the orders table clustered? I'm guessing by orderid.
But, for this query, since jobdatestart is the key restrictor on the number of rows, that would make a better clustering...
September 1, 2021 at 3:39 pm
The '+/- #n' offset parameter only works (afaik) with the GETDATE() function and not literal values
I believe the +/- n days works with any datetime value. I 'm...
September 1, 2021 at 3:27 pm
Do you have the latest CU applied? That condition is often a bug in SQL code, fixed by maintenance.
September 1, 2021 at 2:40 pm
You don't need to shrink the database, but you do need shrink the affected file(s). NEVER shrink a database, only file(s).
Run:
DBCC SHOWFILESTATS
and find the FileId(s) with lots of free space. ...
September 1, 2021 at 11:28 am
I think maybe you can just change the CROSS APPLY in Steve's code?!:
...
cross apply (values (cast(w.CREATE_DATE as datetime)+
...
August 31, 2021 at 9:32 pm
(1) Cluster the main table on ID: a nonclus index is worthless here.
(2) Cluster the lookup table on ID. The join of the two tables should now become a MERGE...
August 31, 2021 at 8:35 pm
Sure, you can do that. But I can't really follow the logic of the the original statement -- particularly the logic of starting from a negative starting byte, so I...
August 31, 2021 at 8:30 pm
Viewing 15 posts - 1,291 through 1,305 (of 7,616 total)