Viewing 15 posts - 286 through 300 (of 489 total)
Going back to your real issue, that of re-initializing the subscriber, you may need to look at how you are doing this.
In SQL 2005 schema changes may be replicated to...
December 21, 2010 at 1:00 pm
As Jason says, low rows per page really means wide rows. In my old mainframe days we could manage the size of the page, this allowed us to calculate an...
December 21, 2010 at 12:04 pm
Note this article: http://support.microsoft.com/kb/264474
Taking it one database at a time.
Model: Unless you have modified the Model database for your particular requirements there is no real reason to move it to...
December 12, 2010 at 4:44 pm
In theory yes, but I question why you want to do it this way. There are a few issues that can cause you problems.
Firstly you can backup the resource database,...
December 12, 2010 at 1:50 pm
It's not as black and white as that.
I do have an issue with SQL creating schemas for every user, and I tend to delete them and set all users default...
December 2, 2010 at 12:57 pm
In general knowing that most vendors don't like client messing with their DBs, I've used a different approach to this problem. I would rather add my own database to the...
November 28, 2010 at 1:45 pm
Iulian -207023 (11/24/2010)
It seems that table size does not change immediately, might this be because of the statistics update frequency?Iulian
If you are using sp_spaceused you will often get out of...
November 24, 2010 at 12:18 pm
Yes, I've seen similar behavior, although not exactly the same as your first example I have seen the second one.
2 things I've learned about the DMV Index recommendations. Don't accept...
November 23, 2010 at 2:00 pm
Have you tried doing a restore with REPLACE? You should be able to use any database backup as long as you make the database name match and use WITH MOVE...
November 23, 2010 at 1:38 pm
Patricia Johnson (11/22/2010)
November 22, 2010 at 8:31 pm
marko61 (11/18/2010)
Are you able to advise which trace counters would be most useful to break down the different stages around the cursor?...
November 18, 2010 at 5:52 pm
I've got to second Lutz here. It sounds from what you said that you ran the SELECT statement of the cursor and it ran in "0" seconds, but when you...
November 18, 2010 at 3:35 pm
Avoid using cursors!
Cursors are row based queries, in simple terms SQL defines which rows are required in what can be thought of as a temporary structure. Then when you step...
November 18, 2010 at 2:57 pm
Page9:F1 (11/18/2010)
We cannot make the DB offline or detach directly...
November 18, 2010 at 12:42 pm
Ann Cao (11/17/2010)
But some one mentioned...
November 17, 2010 at 3:11 pm
Viewing 15 posts - 286 through 300 (of 489 total)