Viewing 15 posts - 196 through 210 (of 213 total)
Has any body tried the sql up program by incepto
January 16, 2003 at 7:02 am
using replication i had a rollover to backup site the other day only to find out that all the text fields were empty seems that if text fields are updated...
January 16, 2003 at 7:01 am
there is an extended stored procedure that is available on this sight that will let you update text files
January 16, 2003 at 6:52 am
I just had an issue with blobs and replication. If writetext is used to update the blob then replication will not work and will not copy the blob. And...
January 13, 2003 at 3:00 pm
I would get an execution plan on this and make sure that all the fields are indexed properly
January 13, 2003 at 2:54 pm
not in will cause alot of the time issues.
Use a left outer join on an indexed field will work better.
January 13, 2003 at 2:52 pm
you cant give truncate table rights but you can delete from the table and then reset the identity column in a sp. Which will accomplish the same thing, except for...
January 13, 2003 at 2:47 pm
both sides of linked servers have security.
In this situation i would create a special user to use that has execute rights to the sp.
January 13, 2003 at 2:45 pm
if this case i would use dts send the data over. I think the maintenance of the dts packet, if you change servers or want it to be on...
January 13, 2003 at 2:42 pm
if you are want it done every time put it in the model database. I have used that for many defaults
January 13, 2003 at 2:30 pm
I have had that problem when my database recovery mode gets set to simple from full.
January 13, 2003 at 2:27 pm
you can also use the execute command to create a global cursor that you can then run locally.
January 13, 2003 at 2:10 pm
You can see a simialar result with the backup command. The time it takes in a maintenance plan is much less than the time it takes in QA. ...
January 13, 2003 at 2:08 pm
My vote is to put them on another server, where they can be backed up. blob fields can and do affect performance if the table is used alot, Also...
January 13, 2003 at 2:01 pm
I have created a cursor looking for each database on each server. This then allows you to do somethings like check to see if the backup exists, whether the...
January 13, 2003 at 1:36 pm
Viewing 15 posts - 196 through 210 (of 213 total)