Viewing 15 posts - 256 through 270 (of 3,011 total)
GilaMonster (3/28/2013)
Unless you've taken the full backup WITH CHECKSUM, the verifyonly verifies very little of the backup and can easily verify...
March 28, 2013 at 9:42 am
The answer to both questions is yes.
However, you could also do the insert so it does not fail on the PK violation:
insert into MyTable
select
MyStage.*
from
MyStage
left outer join
MyTable
on
MyStage.PK_Col1 = MyTable.PK_Col1 and
MyStage.PK_Col2 =...
March 25, 2013 at 3:04 pm
I run DBCC CHECKDB daily on all databases when I can or at least weekly if the maintenance window is too small to do it daily. I have...
March 14, 2013 at 6:12 pm
If the client can't accept paying for the hours you work, then it's time to move on.
Just turn in your timesheet with the actual hours you work, and let the...
March 12, 2013 at 3:02 pm
I usually do it this way, because once the database is dropped there is no way to connect to it.
use master;
alter database [MyDb] set offline with rollback immediate;
alter database [MyDb]...
March 8, 2013 at 10:24 pm
I suggest not giving people permissions to do backups, ands setup a job they can execute that does the copy only backup.
March 8, 2013 at 10:08 pm
ryan.mcatee (3/8/2013)
Dynamic SQL, what a drag.Thanks for the link!
Dynamic SQL is the usually the best way to go when you need to do catch-all searches with multiple optional parameters.
Don't underestimate...
March 8, 2013 at 10:03 pm
Did you verify that Excel is installed on the machine you are trying to execute the SSIS package on?
March 8, 2013 at 8:58 am
I don't see the value in using Litespeed for backups, since the native backup compression in 2008 EE is just as good and doen't cost anything.
March 7, 2013 at 3:36 pm
Or find a vendor that knows what they are doing with SQL Server. :crying:
If this is an application that is connection pooling, then that can cause other problems in...
March 7, 2013 at 3:23 pm
dhananjay.nagarkar (3/7/2013)
that will not help since in my case one of the dates can remian NULL hence if that's the case then it will not work using > ,...
March 7, 2013 at 3:16 pm
In the tests in the article they tested only two HDDs compared to 15 SSDs and they subjected the HDDs to far fewer power loss tests and one of the...
March 2, 2013 at 11:18 pm
Jeff Moden (2/25/2013)
February 26, 2013 at 5:29 pm
Eric M Russell (2/26/2013)
Miles Neale (2/26/2013)
Dave62 (2/26/2013)
Miles Neale (2/25/2013)
Dave,Would you suggest developing a massive new system that is PC friendly in COBOL? ...
Definitely not.
I do .NET development and SQL...
February 26, 2013 at 5:21 pm
Champagne Charly (2/23/2013)
Has any idea why this is classed as non deterministic.
DATEFROMPARTS(DatePart(yyyy,DATEADD(dd, (DATEPART(dw, Date_received) - 1) * - 1, Date_received)),DatePart(mm,DATEADD(dd, (DATEPART(dw, Date_received) - 1) * - 1, Date_received)),DatePart(dd,DATEADD(dd, (DATEPART(dw,...
February 23, 2013 at 8:31 pm
Viewing 15 posts - 256 through 270 (of 3,011 total)