Viewing 15 posts - 2,566 through 2,580 (of 6,038 total)
David.Poole (6/6/2016)
There's clearly an art to running a meeting and...
June 6, 2016 at 3:30 pm
If you're deleting millions of rows, then it's probably the transaction logging, not the actual join or delete operation that's killing you. It's been a couple of weeks since your...
June 6, 2016 at 9:45 am
If you don't have a LinkedIn profile, then create one. If you have "SQL Server" anywhere in your profile, then recruiters WILL contact you... frequently... for the rest of your...
June 6, 2016 at 9:36 am
SQL006 (6/4/2016)
June 6, 2016 at 7:17 am
Yes, disable your audit triggers before you purge a table.
June 3, 2016 at 12:04 pm
Failure should always be an option.
Yes, failure is not a worst case scenario. There is nothing more wasteful than spinning your wheels until you have no more energy, financial...
June 3, 2016 at 11:38 am
So this would basically be a SSIS workflow consisting of T-SQL tasks; one for each table you want to archive.
June 3, 2016 at 9:44 am
Just for illustration purposes, let's assume you have a transactional table called Sales. Create another table called SalesHistory.
use StoreOps;
create table Sales
(
SaleID int not null identity(1,1) primary key
, SaleDate...
June 3, 2016 at 9:41 am
David.Poole (6/2/2016)
June 2, 2016 at 11:49 am
If it's filling TEMPDB during an UPDATE, then it's probably performing a HASH MATCH join between the tables. Look at the estimated execution plan to confirm. To aboid a hash...
June 2, 2016 at 11:26 am
Terje Hermanseter (6/2/2016)
These days with the majority of people going to university some employers have become qualification obsessed.
This is a major problem imo. In my country there are several...
June 2, 2016 at 9:37 am
Grant Fritchey (6/1/2016)
Eric M Russell (6/1/2016)
June 1, 2016 at 2:02 pm
Enclose each of the queries within the following while you unit test them. This will return statistics such as physical/logical page reads, CPU time, plan text, etc. for comparison.
SET STATISTICS...
June 1, 2016 at 12:58 pm
At my old job, I would keep a can of expresso ground Cafe Bustello in my desk, and I would sometimes reload the coffee maker using a double or tripple...
June 1, 2016 at 11:27 am
Just like the cast for Hollywood films, TV shows, or the makeup of city councils or corporate boards, you'll find that diversity within IT is hit and miss depending on...
June 1, 2016 at 10:36 am
Viewing 15 posts - 2,566 through 2,580 (of 6,038 total)