Viewing 15 posts - 481 through 495 (of 7,466 total)
We only create full backups (some daily, some every 3 days, some weekly) and log backups.
Most of our databases are small, but have a fair amount of I/U/D transactions.
We do...
September 28, 2022 at 5:39 am
Lets practice some relational stuff, now your sets are small
visualize what you are doing !
Moving the year selection to a view is going to...
September 20, 2022 at 1:21 pm
I haven't experienced any issues just performing the upgrade on passive nodes.
The upgrade process handled it all very well.
September 20, 2022 at 10:29 am
Because you use "AND races.race_year = 2019" you turn your query result into the results of an inner join !!
add "or races.race_year is null" if you want the full results
BTW:...
September 20, 2022 at 8:38 am
It's always lovely to have numbers, dates , datetime info stored in (N)varchar as it guarantees for problems in the future.
Is there any chance you can just replace the '$'...
September 20, 2022 at 7:32 am
my second question is unanswered
I haven't got a clue
September 15, 2022 at 12:14 pm
because I don't like sequence numbers in column names ...
Declare @pvtColumns nvarchar(max) = ''
Select @pvtColumns= stuff(
(
...
September 15, 2022 at 12:11 pm
With the answers you provided, DRP = worst case, how much data do you think you will loose ? At least 24h !
and how long will it take to get...
September 15, 2022 at 7:35 am
You will lose a week of systems administration actions, sqlagent job information, ...
2. What kind of SQL instance is this? DWH / OLTP...
September 14, 2022 at 1:37 pm
Depending on the databases data size, your best option is to script it all ( without collation )
As you noticed, you can alter a database default collation, but existing objects...
September 14, 2022 at 8:31 am
Following up on this, we gave up trying to pinpoint what query/queries were causing the issues. Threw 64 GB of RAM at it which resolved the issue. We spotted...
September 14, 2022 at 6:11 am
I'm sorry, I misinterpreted / half read your request.
As you noticed, in SQL2019 QS only stores individual query plans.
For stored procedures its tied by object_id.
Maybe this gets you started.
September 13, 2022 at 11:43 am
/*
Get long query text from QueryStore
*/
Select *
from sys.query_store_query
where query_id = 44068
SELECT QSQT.query_text_id,
QSQT.query_sql_text,
...
September 12, 2022 at 11:36 am
I don't use SSDT, but you can check it all at " Compare and Synchronize Data in One or More Tables with Data in a Reference Database "
September 9, 2022 at 9:53 am
Viewing 15 posts - 481 through 495 (of 7,466 total)