Viewing 15 posts - 1,306 through 1,320 (of 2,612 total)
You can either dynamically alter the connection manager (which I have not had a lot of luck in being stable) or make the connection manager always point to the file...
June 13, 2008 at 12:03 pm
Ok, I made my own schema to simplify the example a bit.
Rather than dealing with attempting to keep the ID from the original table, I ordered the INSERT.
Then, because I...
June 13, 2008 at 11:25 am
You configured the replication, so this will depend on the options you have selected.
Some replication is one-way - snapshot replication or log-shipping for example. Merge replication is two-way. ...
June 13, 2008 at 8:38 am
The comparison is relatively usless (in my opinion) because unless you intend to do an in-place upgrade and retain your original hardware (which I would not recommend) you will not...
June 13, 2008 at 5:54 am
Older versions of Sybase do not have OLEDB providers. I would assume you are using a version that you only have an ODBC provider for. If you are...
June 13, 2008 at 5:34 am
By SQL Command, I meant the Execute SQL Task in the control flow, not the OLEDB Command transformation. You could use this to insert or update records at key...
June 13, 2008 at 5:13 am
You are in a SQL 2005 forum - if you actually were running SQL 2005 this would not be that complex since you get a rownum function in 2005. ...
June 12, 2008 at 1:03 pm
SQL 2000 will not run well in WOW on a 64 bit system.
You need to install a 32 bit OS if you want to run 32 bit SQL Server.
June 12, 2008 at 12:59 pm
Make sure you have SET NOCOUNT ON - RS does not like the rowcount output.
June 12, 2008 at 12:55 pm
You need to use RCmd or another utility to remotely execute something.
June 12, 2008 at 12:01 pm
Just look in the TempDB database:
CREATE TABLE ##tmpMyTable (FieldA INT, FieldB VARCHAR(10))
SELECT * FROM TempDB.Information_Schema.Columns WHERE Table_Name = '##tmpMyTable'
June 12, 2008 at 12:00 pm
Does your search criteria start with a wildcard? If it does, an index will not help anyway. If your search criteria is typically "starting with" or the entire...
June 12, 2008 at 11:46 am
Viewing 15 posts - 1,306 through 1,320 (of 2,612 total)