Viewing 15 posts - 6,016 through 6,030 (of 6,215 total)
I would guess that it depends on what is doing the writing, whether or not it allows shared access to the file. Might be fun to test.
In general I'd...
August 24, 2001 at 9:27 pm
Bill,
We use Win2K where Im at, but I've had zero problems with the SQL service packs. Check the MS newsgroups to be sure, but I imagine you're ok to proceed....
August 24, 2001 at 9:21 pm
You could also use a DTS package to just export the tables directly. Not a "supported" technique since it references system tables, but reasonably safe in this instance.
Yet another way...
August 24, 2001 at 9:19 pm
I havent worked through all of it, but usually the way you avoid the EXEC() scoping isssue is through a ##temp table.
Its an interesting problem, but I'd really want a...
August 24, 2001 at 9:15 pm
That solution will work, but will not get you the benefits of a compiled plan. I would look for an alternative to 'use' - in my opinion(!) this is far...
August 24, 2001 at 9:06 pm
40m is not all that huge. Their points are fair. Not sure that its worth arguing about even! Two things to consider. One is that whether or not you copy...
August 24, 2001 at 9:03 pm
Joe - none that we are familiar with. If you do find something, post a follow up? I have not looked at latest versions of Crystal Reports/Analysis...might try that one.
Andy
...
August 24, 2001 at 8:57 pm
Nothing wrong with either approach to me. I would normally try not to be doing a lot of extra disk access on the server, but this probably wouldnt amount to...
August 24, 2001 at 3:35 pm
If you have Access 2000, you may want to take a look at it's "project" mode which gives you live access to tables, views, etc. The tradeoff is you lose...
August 24, 2001 at 3:32 pm
Not that I know of. Linked server would be the way to handle this normally. Is there a reason that won't work for you?
Andy
August 24, 2001 at 3:29 pm
Yes, I believe you will still see the benefits of the compilation. Pretty easy to test - build it, run once so it can compile and cache the data, then...
August 23, 2001 at 4:40 pm
How about posting what you have for code so far?
One thing to strive for is set based operations, not cursor. Sounds like you need to run either 3 count queries,...
August 23, 2001 at 4:36 pm
There are some good samples and documents installed with SQL. Look in MSSQLServer\80\COM\Tools\DevTools\Samples\XML.
Andy
August 23, 2001 at 4:34 pm
One other note - you can use SET CONCAT_NULL_YIELDS_NULL to change the behavior during concatenation operations. Use this option wisely and sparingly!
Andy
August 23, 2001 at 4:32 pm
Viewing 15 posts - 6,016 through 6,030 (of 6,215 total)