Viewing 15 posts - 18,406 through 18,420 (of 26,484 total)
Bob Hovious 24601 (11/12/2009)
What chairs?Yes, I'm planning on being there.
Look up a couple of posts. 😉
November 12, 2009 at 10:44 am
How about something like this?
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
BEGIN TRAN
update table_num_schema set
@nextvalue = next_value = next_value + 1;
where
name...
November 12, 2009 at 10:42 am
GDI Lord (11/12/2009)
Actually, X5 only has two values, 'A' and 'B'. Unless using only those two values is better for this specific query, although it goes...
November 12, 2009 at 10:36 am
How about showing us what you have written so far? This way we can see what you are trying to do and provide you with some constructive feedback.
November 12, 2009 at 10:15 am
Mark Harr (11/12/2009)
I got the answer right, only because the category was SSIS and I figured that one of those two...
November 12, 2009 at 9:54 am
Okay, learned something new this morning about SSIS and multiple flat files.
Good question!
November 12, 2009 at 8:56 am
GDI Lord (11/12/2009)
Current index definition:
CREATE NONCLUSTERED INDEX [IX_tblX_X1X2X3X4X5] ON [dbo].[tblX]
(
X1 ASC, -- VARCHAR(8)
X2 ASC, -- VARCHAR(6)
X3 ASC, -- VARCHAR(3)
X4 ASC, -- VARCHAR(6)
X5 ASC -- VARCHAR(2)
)
INCLUDE (X6, X7,...
November 12, 2009 at 1:03 am
First, in the Object Explorer window of SSMS, look for tempdb under System Databases. Right click on tempdb and select Reports, then Standard Reports, then Disk Usage. If...
November 12, 2009 at 12:36 am
andre_quitta (11/11/2009)
November 11, 2009 at 6:17 pm
seandeyoung-1145978 (11/11/2009)
November 11, 2009 at 5:45 pm
Jim-720070 (11/2/2009)
My sp looked something like this:
CREATE sp_blahblah @month INTEGER (YYYYMM)...
November 11, 2009 at 5:41 pm
mpeters-878100 (11/11/2009)
November 11, 2009 at 5:39 pm
I agree with Sergiy, especially if you have numerous queries that make use of the eventDueDate column in the WHERE clause of queries or if this is a frequent path...
November 11, 2009 at 5:31 pm
Is this actually being run from within a stored procedure?
If so, may I suggest that you read the second article I reference in my signature block below regarding performance issues?...
November 11, 2009 at 4:43 pm
If I may, if you have room on the database server to complete your backup locally, I'd do that and THEN move the backup file to the other server. ...
November 11, 2009 at 4:37 pm
Viewing 15 posts - 18,406 through 18,420 (of 26,484 total)