Viewing 15 posts - 4,816 through 4,830 (of 6,486 total)
That being said - if I understand what you're trying to do - use the XML concatenation "trick".
It's faster and more effective than just about anything else out there. ...
February 8, 2008 at 2:55 pm
Your subquery can't be an update query (which it is with the @var=value statement in it)
A subquery has to actually return results. Again - having that assignment in...
February 8, 2008 at 2:41 pm
Look at inserting a CONDITIONAL SPLIT task (after the unpivot, but before the final destination). your condition will need to determine which rows don't have nulls ......
This would also...
February 8, 2008 at 2:29 pm
Art - this is different from what we tried to tackle in December?
I'm talking about this thread:
http://www.sqlservercentral.com/Forums/Topic431378-338-2.aspx
Just curious. If you can get a full list of the...
February 8, 2008 at 1:17 pm
Agreed - the developer edition isn't limited, but the issue is licensing. Technically developer edition "is licensed only for development, test, and demo use" (quoting from its licensing...
February 8, 2008 at 1:06 pm
Now we're cooking with grease. I'll buy that one for a dollar (to quote RoboCop)....
February 8, 2008 at 12:55 pm
LDB file in Access = LOCK file not log file. That where it would track page locks on various things. it goes away when no one is using...
February 8, 2008 at 12:44 pm
..which is fine as the beginning of a definition, but not nearly complete (at least not for the technical definition). A recursive function is one that calls ITSELF to...
February 8, 2008 at 12:19 pm
hmm...This might be fun without seeing what you're looking at...
A few comments:
- the accountID should be in your final output because it was in the original output. You...
February 8, 2008 at 12:15 pm
TheSQLGuru (2/8/2008)
February 8, 2008 at 11:39 am
Jim Russell (2/8/2008)
Matt Miller (2/7/2008)
Sure the constraints help a system build the diagram, but that is not the same as automating joins. (Nor could it be.)
I guess I am no...
February 8, 2008 at 11:28 am
Karl -
Like previously mentioned - I haven't had the "pleasure" of dealing with Access 2007. that being said - in 2003, there was a way to DOWNGRADE...
February 8, 2008 at 11:11 am
I'd think that if a machine like this is independently tested by an independent testing facility, and that its track record is accurately recorded (again - by professional agencies which...
February 8, 2008 at 10:51 am
Keep in mind that the reason it "fails" is that there's ultimately nothing to back up in Simple mode. since the transaction log automatically truncates as soon as the...
February 8, 2008 at 10:36 am
do it from a query window. It will continue executing.
syntax would look like
alter table mytable
alter column bob2 nvarchar(500) --or whatever size, etc. you wish
February 8, 2008 at 10:33 am
Viewing 15 posts - 4,816 through 4,830 (of 6,486 total)