Viewing 15 posts - 436 through 450 (of 486 total)
As a first attempt how about this:
SET LANGUAGE BRITISH
CREATE TABLE Leave (
LeaveID int IDENTITY(1,1),
LeaveType varchar(50),
LeavefromDate date,
LeaveToDate date)
INSERT INTO Leave
SELECT 'Annual','12/06/2010','15/07/2010' UNION ALL
SELECT 'Medical','12/06/2010','15/07/2010' UNION ALL
SELECT 'Emergency','12/06/2010','15/07/2010'
GO
CREATE PROCEDURE AddNewLeave @NewStart...
MCITP SQL 2005, MCSA SQL 2012
June 3, 2011 at 8:37 am
Bump, Anyone?
MCITP SQL 2005, MCSA SQL 2012
June 1, 2011 at 9:42 am
Bump, Anyone?
MCITP SQL 2005, MCSA SQL 2012
June 1, 2011 at 9:38 am
It has been months as mentioned before the t-log growth is preventing the rebuild.
this table is only queried once per day to produce some operational stats and as long as...
MCITP SQL 2005, MCSA SQL 2012
May 31, 2011 at 8:39 am
This particular index is excluded from index maintenance due to the transaction log growth during the process. We use replication and log shipping on this database to provide reporting...
MCITP SQL 2005, MCSA SQL 2012
May 31, 2011 at 8:18 am
Company policy deems this as maintenance that has to be performed during a maintenance window.
However it looks like is definetly a fragmentation issue as now that I have re-ran as...
MCITP SQL 2005, MCSA SQL 2012
May 31, 2011 at 8:05 am
Gail, thanks for the help, as soon as you said "detailed", I thought bugger, I never noticied that. Must be having an off day.
As for the stats we don't...
MCITP SQL 2005, MCSA SQL 2012
May 31, 2011 at 7:53 am
Gail is correct, you will incur far more reads by deleting in this manner, which will have an impact on resources. Best to only insert what you need.
MCITP SQL 2005, MCSA SQL 2012
May 27, 2011 at 9:41 am
Do you mean what columns are used in the index and what columns are in the INCLUDE clause of the index?
Also using sp_help on the table the index is created...
MCITP SQL 2005, MCSA SQL 2012
April 26, 2011 at 9:54 am
Here you go.
declare @posStart int,
@BuildStr varchar(max),
...
MCITP SQL 2005, MCSA SQL 2012
December 29, 2010 at 8:43 am
Thanks, that makes more sense that it is you are only licenced to a certain number or from a specif source. But it won't actually stop you if you tried...
MCITP SQL 2005, MCSA SQL 2012
October 13, 2010 at 11:05 am
Thanks for replying, to be fair though that does not answer my questions at all. If the sql server is going to limit connections to a specific application how is...
MCITP SQL 2005, MCSA SQL 2012
October 13, 2010 at 10:11 am
Not a good question to ask here!
Study Study Study you would get causght out in the end anyway.
MCITP SQL 2005, MCSA SQL 2012
September 17, 2010 at 10:51 am
unfortunatly not the answer I was hoping for, but thank you anyway.
MCITP SQL 2005, MCSA SQL 2012
September 15, 2010 at 2:39 am
Sorry I don't have access to how we set it up before as it was with another company I worked for. To be fair out network enginner did most...
MCITP SQL 2005, MCSA SQL 2012
July 19, 2010 at 2:00 am
Viewing 15 posts - 436 through 450 (of 486 total)