Viewing 15 posts - 976 through 990 (of 59,063 total)
While I agree with Jeff in the sense that "if the system is designed in one way, why change it to work a different way", I think I would...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2023 at 9:09 pm
To add another 2 cents, I totally agree with David Wiseman. Storing the full path instead of just a file name can be a horrible idea for the very reasons...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2023 at 8:48 pm
The only time that I've used ONLINE Index Rebuild was during testing on some test tables. I've never tested for a "cancel" of an ONLINE Rebuild like you folks accidentally...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 27, 2023 at 2:31 am
Imagine a view is created - that references a computed column which only exists to give the column a different name - and aliases the computed column...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2023 at 9:40 pm
I'll likely be alone on my take on this but "It Depends" on a whole lot of things.
When I first started at a company that I do work for, they...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2023 at 9:12 pm
Heh... not bad for something that used to be natively available on the f4 key until they came out with SQL Server 2005. 🙁 What a bummer that was (and...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2023 at 7:43 pm
Have you considered just making a large test table and testing it?
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2023 at 5:48 pm
As a bit of a sidebar, I've not found any performance improvement that I can relate to the "new" CE but have a whole bunch of slowdowns that I can...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2023 at 5:45 pm
You can also add a computed column to the table - but I really don't see the need or requirement to create a column with multiple names. It is...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 26, 2023 at 12:38 am
Your singular table name indicate you have only one Rate.
Not if you understand that each row is unique and can have only one rate. Either convention is just...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 25, 2023 at 9:25 pm
Hi
I have dataset like this
drop table if exists #dataset create table #dataset(CIF VARCHAR(255), PARENT_CIF VARCHAR(255), UP_CIF VARCHAR(255))
INSERT INTO #dataset SELECT 45218547, 54044082, 54044082 union all SELECT 54044082, 64349595, 64349595...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 25, 2023 at 9:18 pm
I thought Elvis was dead.
😀
--Jeff Moden
Change is inevitable... Change for the better is not.
October 24, 2023 at 11:03 pm
It would appear that the author of the article has left the building. 🙁
--Jeff Moden
Change is inevitable... Change for the better is not.
October 24, 2023 at 6:25 pm
This isn't quite correct - neither CTEs or Views are executed (materialized). Both will be incorporated into the outer query - and then the execution plan is generated.
Now, if...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 24, 2023 at 6:22 pm
Glad to see Jeff is here, I know he'll have some interesting insight onnthis question. CTE or View, which to use and when as well as why?
Thank you for...
--Jeff Moden
Change is inevitable... Change for the better is not.
October 24, 2023 at 1:07 am
Viewing 15 posts - 976 through 990 (of 59,063 total)