Viewing 15 posts - 1,846 through 1,860 (of 5,103 total)
The only database backup operation that can be run when you are in SIMPLE is FULL DATABASE Backup. In BULK-LOGGED you can take TLOG Backups
July 18, 2007 at 12:15 pm
try BEGIN DISTRIBUTED TRANSACTION!
July 18, 2007 at 12:11 pm
You need to call the procedures "at once" right?
So you have to have either separated threads on the client side or separated processes on the client side that call the...
July 18, 2007 at 12:09 pm
You will need to use VBSCRIPT and use DTS Object model to save/load the package. Use VBSCRIPT subsystem of SQLSERVERAGENT.
July 18, 2007 at 11:53 am
Well Try connecting using an SQL Server Login (other than SA of course).
Windows Authentication prevent account delegation ( or impersonation) unless you have setup Kerberos and The remote server...
July 18, 2007 at 11:50 am
are you using "windows" authentication when you sad that you connect as "myself" ?
July 18, 2007 at 11:41 am
The reason for not using the index is that it considers more expensive to perform bookmarkLookup " for the rest of the columns in your query" than scaning the clustered.
You...
July 18, 2007 at 11:39 am
Can you explain "in words" how you constructed the output?
IDLog --- IDOrder
101 --- 201
103 --- 202
104 --- 203
105 --- 203
????????????
July 18, 2007 at 11:15 am
you will have to create either a multithreaded app or multiple clients that pool a single resource file and when you change that "file" your clients will execute the procs.
Cheers!
July 18, 2007 at 11:11 am
in the article properties you can specify destination table owner!
Cheers,
July 18, 2007 at 11:08 am
EM queries UPD Port and from there retrieves the active instances, then it uses the Port in the "connection string"
Cheers,
July 18, 2007 at 11:04 am
You need to map your login to the one used to connect to DB2 in the linked Server properties!
Cheers,
July 18, 2007 at 11:02 am
>>>>
DECLARE @int INT
EXEC sp_xml_preparedocument @int OUTPUT, 'DieselPetrol'
SELECT Carname FROM Catalog
WHERE CarType = ALL (
Select Type
FROM OPENXML (@int, '/CarType/Type', 2)
WITH (Type VARHCAR(20) '.') )
EXEC sp_xml_removedocument @int
<<<<
Is there such a car type...
July 18, 2007 at 10:56 am
If you are planning to drop the table used in a stored procedure temp tables are your friend ![]()
July 18, 2007 at 10:48 am
Viewing 15 posts - 1,846 through 1,860 (of 5,103 total)