Viewing 15 posts - 796 through 810 (of 7,504 total)
We always use
-- switch sqlserver logfiles (errorlogs)
EXEC msdb.dbo.sp_cycle_errorlog
and
EXEC msdb.dbo.sp_cycle_agent_errorlog;
We do this in a single SQLAgent job, but in 2 steps, configured so they...
May 28, 2021 at 7:55 am
What disturbs me more is the fact that "will never share information" gets thrown overboard.
MS baught Whatsapp for its technology.
Instead of rebranding it to MSwhatever, they opt to keep the...
May 26, 2021 at 12:07 pm
keep min mind, a disabled job can still be fired using sp_start_job !
( it will just not be started by its coupled schedules or alerts )
Just in case you let...
May 19, 2021 at 11:04 am
Nice article !
May 3, 2021 at 11:33 am
April 19, 2021 at 1:41 pm
here is a nice ref:
by Brent Ozar
https://www.brentozar.com/archive/2020/10/want-to-use-columnstore-indexes-take-the-columnscore-test/
or direct https://columnscore.com/
April 14, 2021 at 12:47 pm
Oh BTW, On top of compression, you may also want to fiddle around with following settings to see what works best for you !
--Media Set Options
...
April 8, 2021 at 12:56 pm
This may be a start
;With cteSel as (
Select cUser, dDate, rank() over ( partition by cUser Order by cUser, dDate desc) UserDateRank
from #tmp_UserDates
)
Select distinct *
from cteSel
where...
April 8, 2021 at 12:50 pm
.... Compressed backups are only available in the Enterprise Edition for production environments (and Developer's Edition for development/testing environments)....
Compressed backups are available on every edition except Express Edition !...
April 8, 2021 at 7:39 am
SSMS-Setup-ENU.18.8.exe /Passive DoNotInstallAzureDataStudio=1 /install /quiet /norestart /log SSMS_install.log
ref: last line of this paragraph
April 6, 2021 at 6:52 am
Did you try
select convert(decimal(22,2), Case when Sum(@q *COALESCE(NULLIF(COALESCE(@Weight, 0), 0), 0.01)) < 0.01 then 0.01
else Sum(@q *COALESCE(NULLIF(COALESCE(@Weight, 0), 0), 0.01))
end )
April 2, 2021 at 12:42 pm
That is a concern you should have expressed during the interview.
April 2, 2021 at 9:03 am


If you want it to be interpreted correctly ... ask your MS representative.
April 1, 2021 at 1:01 pm
Viewing 15 posts - 796 through 810 (of 7,504 total)