Viewing 10 posts - 31 through 40 (of 40 total)
I know this is a bit late but... each connection while performing task may use a portion of tempdb. Any global space used in tempdb is not released until the connection...
February 10, 2004 at 8:40 am
Go to the Master DB and look at the INFORMATION_SCHEMA views. Alter whatever you need to and save the query as YourCompany_SCHEMA.
Now you have whatever you need. If needed, move...
February 10, 2004 at 8:26 am
USE YourDB
GO
SELECT DISTINCT * INTO TempDB..YourUniqueTable FROM YourTable
GO
DROP INDEX YourTable.BadIndex
GO
TRUNCATE TABLE YourTable
GO
INSERT INTO YourTable SELECT * FROM TempDB.YourUniqueTable
GO
CREATE UNIQUE CLUSTERED INDEX IndexName ON YourTable(Column1Name, Column2Name)
GO
DROP TABLE Tempdb..YourUniqueTable
This should take only...
February 10, 2004 at 8:15 am
Look at "SET TRANSACTION ISOLATION LEVEL" i Books on line for more info.
Controls the default transaction locking behavior for all Microsoft® SQL Server™ SELECT statements issued...
February 9, 2004 at 2:23 pm
Here's some documentation for you. It's not much. Have you tried DBCC Inputbuffer(nn) where nn is the SPID?
Users running SQL Profiler against ADO, OLE DB, ODBC, and...
February 9, 2004 at 1:53 pm
I am connected to MyServer via SQL Query Analyzer and Windows Authentication. I am not connected to YourServer except via a Linked Server from within MyServer. As stated above I...
January 29, 2004 at 12:35 pm
It is being executed from a client machine
It is a type-o
and I'll try the QUOTED_IDENTIFIERS
Thanks
January 29, 2004 at 11:31 am
Thanks.
I can also set the MaxConcurrentSteps to 1 to accomplish the same thing.
I there was some way to tell DTS to use a specific Source Server Directory for these files...
December 18, 2003 at 7:08 am
And it only happens with the Copy SQL Server Object Task.
If I use the Transform Data Task everything is all right... with the exception of my tables number if the...
December 17, 2003 at 2:38 pm
Viewing 10 posts - 31 through 40 (of 40 total)