Viewing 15 posts - 721 through 735 (of 1,098 total)
did you install MDAC?, maybe you should install againt the client tools.
April 4, 2003 at 5:40 am
I don't need to filter the article's records, only the subscribers.
April 4, 2003 at 5:36 am
If you don't have a backup you can't restore the table. You should be carefull and always have a backup of your databases.
You can use a third party tool like...
April 3, 2003 at 12:23 pm
Are you checking the last version of your dts package?
April 3, 2003 at 11:20 am
Sorry, I meant
ALTER TABLE TableName
Alter Column ColumnName INT
April 3, 2003 at 9:39 am
To compare data structure I create a script that uses checksum(). Cheap and easy...
April 3, 2003 at 9:36 am
While you are running the DTS, do you have any other app accesing the mdb files?
I think that it can't execute because the access files are in use.
April 3, 2003 at 9:32 am
With Alter Table.
For example:
if you create the table with
Create Table TableName
(ColumnName INT IDENTITY (1,1))
ALTER TABLE TableName
ADD ColumnName INT
April 3, 2003 at 7:53 am
Well the stored procedure is compiled on creation and the execution plan is saved in memory so usually run faster than individual sentences.
But will aso...
April 3, 2003 at 7:27 am
I would let the stored procedure to do the logic instead of the trigger.
April 3, 2003 at 5:57 am
You shouldn't have any problems downlading the SP from internet. Try downloading it again, maybe it downloads with errors.
April 3, 2003 at 5:50 am
Is this a question about merge replication conflicts?
April 3, 2003 at 5:41 am
Viewing 15 posts - 721 through 735 (of 1,098 total)