Viewing 15 posts - 5,626 through 5,640 (of 6,216 total)
Not bad. In my case we're more concerned with reporting than DR. I've raised the issue and a cluster aint in the forecast! As far as if the main server...
October 18, 2001 at 3:17 pm
Sure, if you can afford to do it, why not? Assuming you don't have luxury of two spare boxes and you have the requirement to be within 5-10 minutes of...
October 18, 2001 at 11:36 am
If you'd like to put together an article we'd be happy to post as long as it fits our standards (good quality, easy to read, etc). Forward it to any...
October 18, 2001 at 10:51 am
Greg,
What would you do if you needed near real time querying ability on the standy server - say data to within 10-15 mins of live?
Andy
October 18, 2001 at 10:48 am
No reason to use a cursor, this can be done as a set based operation. Maybe something like this:
select t.*, c.* from information_schema.tables t inner join information_schema.columns c on t.table_name=c.table_name
Using...
October 18, 2001 at 10:32 am
I gotta ask - why would you do this??
Couple things wrong. Your insert is incomplete and you don't need to use xp_cmdshell, just another exec.
Andy
October 18, 2001 at 10:03 am
You can do this with transactional - take a look at the immediately updating subscribers option (and maybe even the queued updates option). Immediately updating basically puts triggers on all...
October 18, 2001 at 5:04 am
Then why would OS memory matter? If you're just running queries, you need to look at what kind of load you're putting on the server and why. I'd suggest looking...
October 18, 2001 at 4:57 am
Not sure what to suggest besides moving to network cards. You have connectiviity for sure - you can ping both ways once you connect initially?
Andy
October 17, 2001 at 9:10 am
Simplify. I'd suggest importing the file to a working table, tagging ID's that already exist, appending the rest. Then you can email the 'bad' ones to yourself, assign new ids,...
October 17, 2001 at 8:40 am
I wouldnt worry about reserving for the OS, SQL will give back memory if the OS needs it. As long as SQL is the only thing on the box, let...
October 17, 2001 at 8:37 am
I dont think you want to use -1, I think(someone confirm?) that SQL reserves -1 through -15 for its own use. Nothing quite like on error goto. Basically you have...
October 17, 2001 at 8:26 am
Well, the default is to create a database the same size as the model, which may have some extra space to start with. The "why" is that to allocate more...
October 17, 2001 at 8:09 am
If you wouldnt mind, how about posting the script? Probably someone else may find use for it now that we're discussing it!
Andy
October 17, 2001 at 7:46 am
Interesting. I always turn auto shrink off, probably explains why I've never seen this one:-)
Andy
October 17, 2001 at 7:23 am
Viewing 15 posts - 5,626 through 5,640 (of 6,216 total)