Viewing 15 posts - 766 through 780 (of 7,466 total)
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
...
April 1, 2021 at 6:46 am
Check: https://www.sqlservercentral.com/articles/using-database-master-keys-in-sql-server
I haven't tested SSB with AGs myself. #blush# ( because we do not use it in that way )
March 31, 2021 at 9:56 am
because the log backup actually resets marks the log to be overwritten.
Preceding a full backup, you are sure that the next log backup will no longer contain encrypted log data.
March 31, 2021 at 9:42 am
only TCP/IP active ? ( Check SQL Server 20** Configuration Manager / Network Configuration )
March 31, 2021 at 9:40 am
we actually need your full bcp command to figure out what's going on.
REM Create_FMT_files
bcp "[yourdb].[yourschema].[yourtableorview]" format NUL -fD:\BCP\BCPExp\yourdb_yourschema_yourtableorview.fmt -S yoursqlserver -U sqluser-P sqlpwd -n -o D:\BCP\BCPExp\yourdb_yourschema_yourtableorview_fmt.log...
March 31, 2021 at 9:25 am
yes, you can.
ALTER DATABASE [master] SET COMPATIBILITY_LEVEL = 130
Do you have proprietary objects deployed in master db ?
if yes, can you check they are still working as...
March 31, 2021 at 9:19 am
Viewing 15 posts - 766 through 780 (of 7,466 total)