Viewing 15 posts - 1,561 through 1,575 (of 2,905 total)
I actually really liked the uCertify course for MTA-Database Fundamentals. That is the one I took for getting my MTA. That being said, if you have used SQL Server for...
September 14, 2020 at 2:53 pm
Possibly a dumb question, but are both DEV and PROD using the same account to run the tool that connects to SQLPROD? I mean an AD account, not a "local...
September 11, 2020 at 8:09 pm
if the ID field was an IDENTITY, you generally don't include it in your INSERT statements as SQL will auto-increment it. If you include a value, you need to SET...
September 11, 2020 at 7:59 pm
I think it depends on your workloads and environment. For example, if you have a data mart that gets re-loaded nightly using the truncate->reload methodology, and you are doing hourly...
September 11, 2020 at 7:22 pm
There area lot that can do it I'm sure. The first few that come to mind are SSMS and Visual Studio though. Both of these can see all of the...
September 11, 2020 at 7:05 pm
An alternate approach would be to look at the files in the file system. If you select multiple files (in Windows anyways), it will tell you the file size. And...
September 9, 2020 at 2:34 pm
First - I'd recommend against crossposting. I found your post on here, Microsoft and VMWare. This is the only one with replies though.
I do not have failover clustering set up...
September 8, 2020 at 9:48 pm
if I understand right, you want to do an insert into 2 different temp tables from a CTE in a single query? If so, I don't think that is possible. ...
September 8, 2020 at 8:48 pm
My approach - get a monitoring tool to grab the data for you rather than watching things yourself and check the tool over a large timeline to get a baseline.
And...
September 4, 2020 at 8:10 pm
I think the easiest way would be to join the tables in the query, but that may not be possible. Failing that, I think your second dataset would need a...
September 4, 2020 at 6:44 pm
Another approach would be to go back to your query where you have all of those CTE's and UNION all of the data from the non-master table in your second...
September 4, 2020 at 4:13 pm
a_car11 - Just so I understand the question correctly, you want to get all of the records that ONLY exist in 1 of the 50 tables, correct? I just want...
September 3, 2020 at 10:15 pm
I think you will want to look into windowing functions. in this particular example, remove your GROUP BY and change your SUM to:
,SUM(B.MappedAmont) OVER (PARTITION BY A.BudgetId,...
August 28, 2020 at 9:03 pm
Offhand, I am not sure if activity monitor could do that, but I would not be surprised. If I remember right, it opens a transaction when you open it and...
August 28, 2020 at 8:45 pm
Not entirely sure why that would need to be "DNSLess"... you can use DNS without using ODBC. But maybe I'm just misunderstanding the terminology.
Which brings me back to the first...
August 28, 2020 at 5:57 pm
Viewing 15 posts - 1,561 through 1,575 (of 2,905 total)