Viewing 15 posts - 751 through 765 (of 1,246 total)
Your table definitions are generating errors... Please correct, test and repost.
April 11, 2017 at 3:35 pm
Actually there is no need for the expense a splitter function in this scenario...
IF OBJECT_ID('tempdb..#FolderPath', 'U') IS NOT NULL
DROP TABLE #FolderPath;
GO
CREATE...
April 11, 2017 at 9:38 am
April 11, 2017 at 7:19 am
Here is a different version using Steve's test data set...
It makes for a cleaner plan and a lower lower cost estimate but I haven't tested against a large enough...
April 10, 2017 at 2:37 pm
kaushikchin2 - Thursday, March 30, 2017 8:22 AMOr would there be any overheads because it is a float data type?
Neither DECIMAL nor NUMERIC are...
April 9, 2017 at 7:35 pm
Why not simply create a single "Lineage" table that has Object_id, column_id & source_system_id?
I'm assuming that the "official source" for a given column remains consistent of course...
April 7, 2017 at 1:30 pm
April 5, 2017 at 9:33 am
amns - Wednesday, February 1, 2017 8:27 AMSeems a good solution. Thanks!
No problem. Let us know how it goes. 🙂
February 1, 2017 at 8:37 am
If the amount to data you want to keep is smaller that the data you want to delete, there is a trick that uses minimally logged transactions to do the...
February 1, 2017 at 8:16 am
January 18, 2017 at 8:59 am
January 18, 2017 at 8:08 am
January 18, 2017 at 7:05 am
andrew gothard - Wednesday, January 18, 2017 4:44 AMIf you're after the query plan, why not pull it out of cache?
Because it isn't...
January 18, 2017 at 7:02 am
January 17, 2017 at 1:16 pm
Viewing 15 posts - 751 through 765 (of 1,246 total)