Viewing 15 posts - 46 through 60 (of 455 total)
and to the original concern about what to do if more rows came into the mix, i would try something along these lines;
Create table #Mytemp
(Id int ,
value nvarchar(100),
name varchar(50))
insert into...
April 22, 2013 at 11:08 am
yes, i know. just wanted to throw out a tally table solution too.
April 22, 2013 at 8:30 am
use a tally table.
SELECT TOP 11000
IDENTITY(INT,1,1) AS N
INTO #Tally
FROM Master.dbo.SysColumns sc1,
Master.dbo.SysColumns...
April 22, 2013 at 8:17 am
I love the idea of the central monitoring server using linked servers....I use one too. Makes my life so easy.
I use a similar process but its a little less...
April 22, 2013 at 4:33 am
SQLQuest29
that is prety neat script. i am adding that to my tool box.
note to other users - send result to text - (CTRL +t)
thanks!
March 14, 2013 at 9:38 am
check the file system permissions on the folders where the system databases were installed to verify that the local windows group and or user that runs the agent has the...
March 12, 2013 at 11:07 am
if the PROD backups live on the the prod server and the test server is reading that file over the network, then YES. prod will be impacted by disk reads...
March 5, 2013 at 12:58 pm
TravisDBA (3/4/2013)
Please be Be very careful about suggesting or even implying that people should do this on productiohn SQL Servers. i work for the government and the auditors are...
March 4, 2013 at 10:13 am
BenWard (3/4/2013)
I read some time...
March 4, 2013 at 5:25 am
Jeff Moden (2/28/2013)
March 3, 2013 at 6:51 am
Thanks Brian. This article is extremely informative. I hate permissions in SQL but your approach is spot on for making it understandable.
February 19, 2013 at 8:30 am
nice article. key points covered very well.
we use TDE. we have about half the databases encrypted. the others are not.
i noticed less than 5% increase in CPU usage implemening TDE....
August 16, 2012 at 6:23 am
again, thank for clarifying that Paul...
so unless you have some hardcore redundancy, you most likely will always incur some data loss....
you can mitigate that loss by running DBCC CHECKDB often.
i...
June 25, 2012 at 6:01 am
thanks Paul,
so i take daily fulls at 2 am. I take logs every 15 minutes.
I run DBCC checks daily at 8pm and have processes in place to email me...
June 25, 2012 at 5:52 am
this is a great article about the perils of using the ALLOW_DATA_LOSS command, but i would be curious to know what Pauls recommendation are for a backup strategy.
when is the...
June 25, 2012 at 5:15 am
Viewing 15 posts - 46 through 60 (of 455 total)