Viewing 15 posts - 1 through 15 (of 18 total)
What a coincidence. In a thread below that I read, I learned that this may be the EAV model.
September 18, 2012 at 10:28 am
Understood, KGB. This is not associated with an app. It pertains to a batch import. We would be receiving a table with some combination of attributes populated...
April 30, 2012 at 8:32 am
That was an interesting article indeed, Evil Kraig F.
I would be comparing two tables (vs. a set of variables or one row). Using my shoe example, I would compare...
April 30, 2012 at 7:41 am
I figured out the issue. I had line feeds at the end of some values.
The secondary issue is that the manner in which I examined the values did not...
November 11, 2009 at 10:28 am
As another test, I tried exporting with bcp. Same result.
November 11, 2009 at 6:27 am
Wonderful. Thank you.
r.hensbergen (1/29/2009)
It seems not, however you can change it to something like this:
SELECT COUNT(*)
FROM
(
SELECT col1, col2, col3
FROM table
GROUP BY col1, col2, col3
) X
January 29, 2009 at 9:15 am
Michael Valentine Jones (11/11/2008)
November 11, 2008 at 5:17 pm
The point of my original query, as you may have guessed, is to help me overcome the poor test score (assuming "NATURAL JOIN" is truly not supported syntax).
November 11, 2008 at 4:07 pm
Well, I'll tell you the way it was used that was very painful for me. I just took a test on SQL that had statements such as...
SELECT *
FROM table1
NATURAL...
November 11, 2008 at 4:04 pm
GSquared (8/6/2008)
Why not install a copy of Dev Edition on a home PC? You mentioned you don't want to, but I'm curious,...
August 6, 2008 at 8:51 am
I have been using the online backup service offered by Mozy (www.mozy.com). There have been some minor glitches but overall I have been satisfied. There are other comparable...
March 3, 2008 at 10:39 am
Michael and Lynn, thanks much for your feedback. I really appreciate it.
July 6, 2007 at 9:44 am
MVJ, thanks much.
Why is that best? Is it best because it is not converting it to a varchar?
July 6, 2007 at 8:38 am
Mark,
We have been dealing with the batch loading issue too. I like your method.
Regarding the BEGIN/COMMIT TRAN piece, somebody suggested to us that we simply issue the CHECKPOINT statement instead...
June 29, 2007 at 1:36 pm
Viewing 15 posts - 1 through 15 (of 18 total)