Viewing 15 posts - 61 through 75 (of 598 total)
1) Who said anything about nightly index rebuild? It sounded to me like you did some massive cleanup process that removed hundreds of GB from your database and you want...
December 5, 2016 at 12:35 pm
I'd really prefer not to have to do a nightly rebuild on every index - don't think I have enough time to complete that nightly anyway.
Can I just do a...
December 5, 2016 at 10:44 am
I need the max
This seems to work :
SELECT * FROM [SQLNODEBSTAGE].[PEC_PROD].[DBO].[Staging_Eligibility]
WHERE (select max(staging_eligibility_id) FROM [SQLNODEBSTAGE].[PEC_PROD].[DBO].[Staging_Eligibility]) <> (SELECT MAX(staging_eligibility_id) FROM [SQLNODEBSTAGE].[STAGING_Archive].[DBO].[Staging_Eligibility_archive])
November 17, 2016 at 9:24 am
Are the production staging tables to be entirely deleted (truncated), or will you delete only rows aged within a specific date range?
The staging tables will not be deleted only...
November 16, 2016 at 7:42 am
Thanks . I figure it out. It really was a NULL.
I am querying in an A/G group and needed to add a linked server to reference my primary to get...
November 11, 2016 at 10:47 am
Thanks.
I think I found one that is pretty good - has fiscal dates (Quarters/Year end, etc)
October 24, 2016 at 12:50 pm
Thanks, but I'm looking for somthing similar to this..(but I can't this working - nothing prints)
USE Master;
GO
SET NOCOUNT ON
-- 1 - Variable declaration
DECLARE @dbName sysname...
September 14, 2016 at 12:37 pm
Koen Verbeeck (9/7/2016)
Why not use SSIS to write to the Excel file?
Wish we could. End users need to be able to choose parameters.
It would be ideal if the end user...
September 7, 2016 at 7:09 am
Kinda figured, but was hoping for something.
Thanks Steve.
August 11, 2016 at 10:32 am
Without the TF 1117 the splitting of the tempdb into multiple files is likely to be an utterly useless exercise as the load will more or less end up in...
August 2, 2016 at 5:49 am
this is pretty much what I was thinking of doing...thanks!
June 8, 2016 at 3:34 pm
Agreed Jeff.
The trigger(s) caused a huge series of updates to several tables, logging, auditing, etc.
This was a one time update. We are a really busy shop..so 30G growth...
June 2, 2016 at 7:55 pm
Hi Jeff,
Well it is fixed. Thanks everyone. I did run it with Gail's suggestion and it used about 30G worth of temp db space.
So for us, that was a...
June 2, 2016 at 7:03 pm
Viewing 15 posts - 61 through 75 (of 598 total)