Viewing 15 posts - 16 through 30 (of 137 total)
Ed Wagner (3/7/2014)
BWFC (3/7/2014)
TomThomson (3/6/2014)
SQLRNNR (3/6/2014)
Cabrillo1542
1492
1787
5563
March 7, 2014 at 5:49 am
yuvipoy (3/5/2014)
After having bacth operation is delete operation faster?
how much time you gained after rewritting your query.
Incase what if in lower version of sql server say sql server 2000...
March 6, 2014 at 6:00 am
BWFC (3/6/2014)
Ed Wagner (3/5/2014)
TomThomson (3/5/2014)
BWFC (3/5/2014)
SQLRNNR (3/4/2014)
EL Jerry (3/4/2014)
Revenant (3/4/2014)
Ed Wagner (3/4/2014)
crookj (3/4/2014)
SQLRNNR (3/4/2014)
microbotBug
Bacteria
Virus
Disease
cure
Bacon
Francis
Flambe
Crepe
creep
March 6, 2014 at 5:40 am
the prevailing wisdom is to use a separate service account for each server with the minimum permissions required to run the service.
March 5, 2014 at 5:49 pm
Does it need to be part of a SSIS package? If not, you can locate records with grouping:
select Key2
,min(key1) as RecordToKeep,
,count(key1) as RecordCount
from table
group by...
March 5, 2014 at 12:34 pm
george sibbald (3/5/2014)
Stewart "Arturius" Campbell (3/5/2014)
however, this will require a full backup before and...
March 5, 2014 at 11:10 am
We have this scenario and fixed it by creating a Staging database in simple mode next to the DW. fast loads into staging require minimal logging. staging is backed up...
March 5, 2014 at 9:08 am
yuvipoy,
we have similar requirements for our real-time systems. We need to delete millions of rows and not cause locking that would stop transactions. I wrote a delete loop that works...
March 5, 2014 at 6:36 am
I do not have my script handy at this second, but I know what it does in general.
Create a table with several INT, CHAR, and DateTime columns
use loop operator to...
March 4, 2014 at 11:24 am
Awesome. Glad I could help and thanks for marking it as solved.
March 4, 2014 at 11:17 am
Ed Wagner (3/4/2014)
BWFC (3/4/2014)
WaveFrequency
Megahertz
March 4, 2014 at 6:03 am
Tritoch (3/3/2014)
We do everything we can to keep our applications online. We avoid patches...
I would much rather take a small amount of periodic planned downtime to patch than have a...
March 3, 2014 at 7:29 am
RonKyle (3/3/2014)
Kimball design assumes your users are getting data from the relational engine
Would you mind explaining further what you mean by this? It's possible that I'm not understanding something,...
March 3, 2014 at 6:56 am
Lempster (3/3/2014)
Jeff Moden (2/28/2014)
March 3, 2014 at 6:32 am
Viewing 15 posts - 16 through 30 (of 137 total)