Viewing 10 posts - 1 through 10 (of 10 total)
- Add a second log file.
- To find out what is filling the transaction log
USE [DBNAME];
DBCC OPENTRAN;
- check log backups
- if you have replication, check the log reader is running.
-...
July 11, 2014 at 10:34 am
Not a solution but something to look into...
MERGE will request a HASH join. Run the following when the query is running to see how much memory it is requesting.
SELECT...
July 11, 2014 at 10:29 am
You could add a new filegroup set the size you require. Then rebuild the index on the new filegroup (ON <<new filegroup>>) using ONLINE = ON, DROP_EXISTING = ON....
July 11, 2014 at 10:17 am
Michael R. OBrien Jr (1/2/2013)
SELECT...
July 11, 2014 at 9:49 am
I agree, much tidier.
EXEC ('SELECT ''O'' + CHAR(39) + ''Neal''')
July 11, 2014 at 9:32 am
December 6, 2013 at 7:47 am
From books online:
The MERGE statement should not be used when using queued updating replication. The MERGE and queued updating trigger are not compatible. Replace the MERGE statement with an insert...
December 6, 2013 at 7:42 am
jayant-479472 (10/16/2008)
how would we move a table without clustered index to a different filegroup ?
To move a heap you would need to create a clustered index on the new filegroup...
December 6, 2013 at 7:31 am
For me it like a scene from the film Zulu... I'm massively outnumbered from an enemy with very blunt instruments. The odd one can shoot but normally misses.
I have...
October 4, 2013 at 4:34 am
To give more context this is my table.
CREATE TABLE [dbo].[LabelValues](
[UserAccountID] [int] NOT NULL,
[ContactID] [int] NOT NULL,
[STRING1] [nvarchar](255) NULL,
[STRING2] [nvarchar](255) NULL,
[STRING3] [nvarchar](255) NULL,
[STRING4] [nvarchar](255) NULL,
[STRING5] [nvarchar](255) NULL,
[STRING6] [nvarchar](255) NULL,
[STRING7] [nvarchar](255)...
January 8, 2013 at 7:57 am
Viewing 10 posts - 1 through 10 (of 10 total)