Viewing 15 posts - 211 through 225 (of 612 total)
GilaMonster (12/11/2016)
Log backups don't make the file smaller. They mark the space in the file as reusable.
But if his log is getting physically larger then something is taking up the...
December 12, 2016 at 12:21 pm
Perry Whittle (12/6/2016)
Guðjón Kr. Sigurðsson (12/6/2016)
Turns out removing the TDE before a new backup was the solution. 🙂We had not tried the detach/attach method.
There shouldnt be any reason why you...
December 11, 2016 at 9:12 am
Hi Thom,
thanks for clarifying; that was my thought as well. The link I will be checking out.
Looks like I'll be relying on inefficient ETL in the meantime.....
December 11, 2016 at 9:07 am
Ed Wagner (12/10/2016)
kevaburg (12/10/2016)
Ed Wagner (12/10/2016)
kevaburg (12/9/2016)
exec sp_msforeachdb 'DBCC SHRINKDATABASE [?]';
It is far from ideal and you will most likely experience performance problems during the run (do it...
December 11, 2016 at 9:05 am
Ed Wagner (12/10/2016)
kevaburg (12/10/2016)
Have you tried starting the Installation with elevated privileges (Run As Administrator)?
The...
December 10, 2016 at 10:20 am
Ed Wagner (12/10/2016)
kevaburg (12/9/2016)
exec sp_msforeachdb 'DBCC SHRINKDATABASE [?]';
It is far from ideal and you will most likely experience performance problems during the run (do it in a maintenance...
December 10, 2016 at 10:16 am
How do you measure database complexity?
Ideally a solution will be as simple as possible, but does not necessarily mean it will be simple.
Very rarely will a developer be able to...
December 10, 2016 at 6:59 am
HanShi (12/9/2016)
simon_s (12/9/2016)
.... (I've even tried manually tried installing the KB but it fails with "The Update is Not applicable to Your Computer)
December 10, 2016 at 6:45 am
From my point of view you quite simply don't have the permissions to perform the installation.
Have you tried starting the Installation with elevated privileges (Run As Administrator)?
The Red Cross though...
December 10, 2016 at 6:41 am
Saurabh.D (12/9/2016)
Exec sp_helpextendedproc 'xp_ReadErrorLog' gives "xpstar.dll" as source.
there is no page even on MSDN Library
Here is...
December 9, 2016 at 9:49 am
Saurabh.D (12/9/2016)
This will work
EXEC xp_ReadErrorLog 0, 1, Null, Null, '2012-05-16 00:00:00', '2019-12-31 23:59:59'
ExtendedStoredProc xp_ReadErrorLog has Start_Date & End_Date options
When I understand the procedure properly...
December 9, 2016 at 6:13 am
R.KU.PA_DBA (12/8/2016)
I have two node windows server 2012 cluster with SQL installed in cluster, I need to add the another two nodes into the same cluster.
Is this possible to...
December 9, 2016 at 5:40 am
sal-295209 (12/8/2016)
I have 2 servers running SQL Server 2014 which are in different location. Server 1 does not see Server 2 and vice versa. I have a shared drive...
December 9, 2016 at 5:38 am
Try a shrinkdatabase:
exec sp_msforeachdb 'DBCC SHRINKDATABASE [?]';
It is far from ideal and you will most likely experience performance problems during the run (do it in a maintenance window) but if...
December 9, 2016 at 5:36 am
Here is a solution that might suit your purposes:
create procedure sp_readerrors
as
declare @string1 nvarchar(64) = null;
declare @string2 nvarchar(64) = null;
declare @logNum int = 0;
declare @logtype int = 1;
declare...
December 8, 2016 at 5:15 am
Viewing 15 posts - 211 through 225 (of 612 total)