Viewing 15 posts - 226 through 240 (of 248 total)
I'd rather leave the Mirroring in place and have additional log shipping, I'd be interested in your opinions
as an alternative and easy solution : create readable snapshots based...
May 2, 2019 at 11:28 am
another thing to check :
select * from sys.configurations where name = 'backup compression default'
May 2, 2019 at 11:22 am
Hi Theo!
Thanks for your perfect solution. Couple of years ago it helped me and inspired to create SSRS report with similar functionality.
Also, it is possible to run it as Custom...
May 2, 2019 at 11:14 am
Try the following to see if it shows anything:
=IIF(Globals!ReportServerUrl=Nothing,
"/Images/SSRS_DDWA_Logo_Stacked_Green.png",
"/Images/SSRS_DDWA_Logo_Stacked_Green.png"
)
If it doesn't , remove "IIF" and hardcode the "/Images/SSRS_DDWA_Logo_Stacked_Green.png".
Simple step-by-step debugging either from top to bottom or contrariwise.
May 1, 2019 at 3:39 pm
Jasona, you're welcome.
Also, perhaps you find it useful - SSRS report which shows activity of a SSRS server (usage of reports).
https://github.com/ASamykin/PerformanceReports/blob/master/Report%20Project1/SSRS_overview.rdl
May 1, 2019 at 8:15 am
Right now, I've got my SSRS instances sitting on the same servers as the databases they service. There's some things that might be related to this (first time in...
April 30, 2019 at 1:15 pm
Preview mode uses cached data (in the same folder with report files but with .data extension)
Four ways to address the "issue"
1) refresh the page (doesn't help much),
2) delete appropriate .data...
April 30, 2019 at 1:07 pm
hi
NTLM will be used for local connections via shared memory
KERBEROS is for TCP connections
at least I haven't seen the opposite for years
check:
select net_transport,auth_scheme,count(1) [sessions]
from sys.dm_exec_connections
group by net_transport,auth_scheme
April 17, 2019 at 3:00 pm
I could find , one of the table is having million of records and when we tried to open index fragmentation for same table sql server is not responding...
April 17, 2019 at 2:50 pm
Andrey, I checked default trace and found missing stats in tempdb: "NO STATS:([tempdb].[dbo].[#calculateRequestNewResourceNestedSetStatementTransitionsNonMemberSet_______________________________________________0000000E4593].[SetKey])" Is this a causing the issue? Please confirm.
Arooj, hi
I'm pretty sure that this finding doesn't relate...
April 17, 2019 at 2:43 pm
Thanks for your response Sue, But my major question was to DBAs not about using tools. The major question was, does anybody using Transparent Data Encryption in SQL Server...
April 9, 2019 at 4:16 pm
Is there anyway related which is causing to tempdb full. Kindly request to help me on this. Thanks, Arooj
Arooj,
if your tempdb files are configured to autogrow and...
April 9, 2019 at 3:57 pm
Agree with Jeff - it's not worth to change db owner to SA automatically.
It may affect ex-owner to lose access to the database.
Ex-owner should be created in the database...
April 4, 2019 at 3:29 pm
December 19, 2018 at 9:15 am
December 19, 2018 at 7:55 am
Viewing 15 posts - 226 through 240 (of 248 total)