Viewing 15 posts - 1 through 15 (of 13,838 total)
I still don't really understand what you are trying to achieve.
You have a database on server A. Users can access some tables and execute some procs.
You restore the database to...
August 28, 2025 at 3:09 pm
Can you go into a bit more detail regarding this 'ownership chain' you are trying to prevent?
August 26, 2025 at 3:15 pm
I'm a fan of the flexibility of tablixes (tablices?) but one thing I find really awkward/annoying about them is when saving as XLS, you inevitably end up with merged...
August 26, 2025 at 2:58 pm
I learned Git by working with it. There is a lot going on & I can sympathise if you're feeling overwhelmed.
Jump in and try the following
August 26, 2025 at 9:36 am
Like you, Window functions and CTEs changed the way I write a lot of my T-SQL. DROP … IF EXISTS also makes code much tidier.
When they made Developer Edition free...
August 22, 2025 at 6:26 am
Despite this being the same error message as the original post, you should really start a new thread, as it's likely a different issue causing the same error.
You do not...
August 18, 2025 at 7:55 am
Thanks for posting back. Glad it helped you.
June 30, 2025 at 11:04 am
This is still happening. Can anyone assist?
June 30, 2025 at 11:01 am
As I mentioned earlier, I have stopped receiving e-mail notifications of replies, for some reason.
The actual procs are not named with numbers! They are named based on the tables they...
June 30, 2025 at 11:00 am
If I am not mistaken, PowerQuery is part of Excel, so it'll be hard to remove excel from your mix.
PQ can be used in many other places, including Power...
June 27, 2025 at 9:21 am
Something like this?
DROP TABLE IF EXISTS #product;
DROP TABLE IF EXISTS #VendorRank;
--Product table and data
CREATE TABLE #Product
(
ProductID INT
, ProductSKU INT
,...
June 27, 2025 at 7:46 am
Thanks, Brian. There is no parallelism requirement. The fact that T3 and T4 are at the same level implies only that they are independent of each other and can be...
June 26, 2025 at 9:11 pm
Steve, thank you for taking the time to code and test this. I've not written many rCTEs in the past and my brain has trouble composing them. I'd tried and...
June 26, 2025 at 9:01 pm
Wow, I just wrote a long response to Brian's message and after hitting Submit, I got an 'Are you sure you want to do that?' error and my text got...
June 26, 2025 at 8:42 pm
I have not tested the script, but I am interested to hear of the use case.
Why would you do this in preference to simply doing a schema compare in a...
June 18, 2025 at 6:49 am
Viewing 15 posts - 1 through 15 (of 13,838 total)