Viewing 15 posts - 766 through 780 (of 7,472 total)
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
I hope this can help out
April 1, 2021 at 9:41 am
We use DNS Aliasses for most of our sqlserver servers.
Hence connections to myco-dev-proj\Instance001 will get pointed to effectiveDevServer999\Instance001
We keep instance names unique !
When preparing an upgrade by new server installation,...
April 1, 2021 at 6:57 am
Viewing 15 posts - 766 through 780 (of 7,472 total)