Viewing 15 posts - 2,401 through 2,415 (of 2,897 total)
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
"... even though the second database has smaller files it may have more logged activity to back up. Check this from the size of the .trn files produced by the...
June 26, 2007 at 2:23 pm
Yes, it's safe to run. SQL won't delete logs that have not been backed up (in FULL mode)
But, if you backup the t-log more frequently, it won't need to grow...
June 26, 2007 at 2:21 pm
I don't think you can avoid the rollback (I may be wrong - it's been a while) .... but as I recall, running those data pumps as jobs is SO MUCH faster you'll probably...
June 26, 2007 at 2:11 pm
Viewing 15 posts - 2,401 through 2,415 (of 2,897 total)