Viewing 15 posts - 2,401 through 2,415 (of 2,900 total)
You can try:
sp_repldone @xactid = NULL, @xact_segno = NULL, @numtrans = 0, @time = 0, @reset = 1
That's what I've done, but to solve a slightly differnt problem. I...
July 18, 2007 at 2:19 pm
Most tables could be copied via linked server, but a few were getting an OLEDB error.
The problem ended up being that there were triggers on the target tables. I had to...
July 3, 2007 at 2:32 pm
You might get better feedback if you post in one of the SQL subfolders instead of the Notification Services area.
June 28, 2007 at 2:27 pm
You might get better feedback if you post in one of the SQL subfolders instead of the Notification Services area.
June 28, 2007 at 2:24 pm
Good Points. We went through something similar a while back, trying to import Excel files with garbage in them. At first we tried fixing it in SQL, but then said...
June 28, 2007 at 7:42 am
We have 2 different types. One application has varchar 19, the other is char 50.
In both cases they are encrypted and have non-numeric characters.
June 27, 2007 at 2:31 pm
For CR-LF removal, I do something like this:
update
My_Table
set
ColumnA = replace(replace(ColumnA...
June 27, 2007 at 2:24 pm
There are a few other longstanding bugs on this forum that are annoying ..... oh well
June 27, 2007 at 2:12 pm
"....I HATE IT when the system eats my message whilst I'm writing it!...."
You mean when you type a long post, and then it gets wiped out for no reason...
June 27, 2007 at 2:02 pm
You might get better feedback if you post in one of the SQL subfolders instead of the Notification Services area.
June 27, 2007 at 1:57 pm
You might get better feedback if you post in one of the SQL subfolders instead of the Notification Services area.
June 27, 2007 at 1:55 pm
You might get better feedback if you post in one of the SQL subfolders instead of the Notification Services area.
June 27, 2007 at 1:54 pm
We run many of our "non-critical" databases in SIMPLE mode, but our production databases are definately in FULL mode. Every database has a full backup every day. You should be...
June 27, 2007 at 12:04 pm
And you should understand that any database in SIMPLE recovery mode can only be recovered back to the last full backup. So if you did a full backup on Sunday,...
June 27, 2007 at 7:50 am
Can you give any more detail ? What part of replication is getting blocked ? I would think it's snapshots contending for the same tables as users. Perhaps you change...
June 27, 2007 at 7:45 am
Viewing 15 posts - 2,401 through 2,415 (of 2,900 total)