Viewing 15 posts - 451 through 465 (of 5,103 total)
you can use "information_schema.tables" instead!
February 20, 2009 at 10:11 am
No the primary key ranges are different on each. Its 2 different sources of data within 1 table structure at the destination end.
If the PKs are different you should...
February 20, 2009 at 10:09 am
Shark Energy (2/20/2009)
February 20, 2009 at 9:20 am
If my sql server is running under local account without any windows service account can i be still able to backup databaase over network drive?
NO
February 20, 2009 at 9:02 am
winston Smith (2/20/2009)
is there a need to backup the tempdb really?
Why would you want to do that ?
February 20, 2009 at 9:00 am
you are probably experiencing "integer" division.
Change
COUNT(Spells.Spell_Episode_ID35)/GPP.PRACTICE_POPULATION * 1000
To
1.0*COUNT(Spells.Spell_Episode_ID35)/GPP.PRACTICE_POPULATION * 1000
February 20, 2009 at 8:53 am
Shark Energy (2/20/2009)
Another side question - When you are trying to get "continue on data consistency errors" on from 2000 to 2005 - how does this...
February 20, 2009 at 8:50 am
First of all not having snapshot initialization makes you lose some "features" that help ( a lot ) when you want to incrementally maintain replication, as you are already doing.
Don't...
February 20, 2009 at 8:47 am
The only thing I can think of is to measure CPU usage (and IMHO more importantly IO overhead) with and without the agents running.
LogReader on Publisher
Distribution on Publisher if Push...
February 20, 2009 at 8:19 am
ritesh (2/19/2009)
1.sp_removedbreplication
2.sp_dropsubscription
sp_droppublication
Please tell me what is the difference between them? which one is better to...
February 20, 2009 at 8:00 am
skjoldtc (2/19/2009)
Danger comes from acting on data...
February 19, 2009 at 3:47 pm
David Kranes (2/19/2009)
February 19, 2009 at 3:37 pm
happy to help
February 19, 2009 at 12:36 pm
You probably want to use SELECT INTO, then Drop the old table and finally recreate index/PK
February 19, 2009 at 12:35 pm
you probably need to roll your sleeves and do a bit of coding but here is some help:
Example to import and export images from and to SQL 2005 Table[/url]
Hope this...
February 19, 2009 at 12:29 pm
Viewing 15 posts - 451 through 465 (of 5,103 total)