Viewing 15 posts - 4,351 through 4,365 (of 7,429 total)
Or try this:
SELECT T1.first, T1.last
FROM
table1 T1
LEFT JOIN
table2 T2
ON
T1.First = T2.First AND
T1.Last = T2.Last
WHERE
T2.First IS NULL
November 9, 2002 at 5:36 pm
You need to evaluate your expression so that datatypes are common and explicitly CAST them to common datatypes when needed (implicitly allowing SQL to deteremine this does not behave the...
November 9, 2002 at 11:04 am
If the datatype is of the character types then you can have a default of '' or an empty string. Other types don't allow this like this.
November 8, 2002 at 6:32 pm
So I know we are are the same page (or heck, even the same book at this point). Simon will you post an example of what you are doing so...
November 8, 2002 at 10:57 am
Then you are talkign abou doing the code lik so
rs.CursorLocation = adUseServer
but when using adCmdStoredProcedure as the CommandType for the command object there is a know bug that the cursor...
November 8, 2002 at 9:13 am
Either you will need to enforce NOT NULL thru a trigger, checking field on INSERT in trigger, do the logic client side or use a Stored Procedure with the logic...
November 8, 2002 at 8:57 am
Cool I have now learned something new.
November 8, 2002 at 8:36 am
I'll have to test at home when I get a chance but I will pass anything I find back to the thread.
November 8, 2002 at 8:04 am
I don't believ so, could be triggers on the table you don't remember. But again your best bet to find the answers is to watch the DB with SQL Profiler...
November 8, 2002 at 7:43 am
There is a lot to restoring a 6.x database. You have to recreate the database device in the same manner it was create perviously, step by step, from it's smallest...
November 8, 2002 at 7:41 am
Ok did check out that a NULL was in the output. Not sure how you app works but if all you are concerned with is the final output then this...
November 8, 2002 at 7:21 am
See if this helps with reasoning
800000
200000
quote:
To follow up on the experimentation:The strange thing about this is that the time stamp (milliseconds) that...
November 8, 2002 at 6:33 am
To the best of my knowledge the answer is no.
November 8, 2002 at 6:14 am
Not as default, no. You have to specify NOT NULL. Would be a nice feature thou. Might send a feature request to MS.
November 8, 2002 at 6:07 am
Viewing 15 posts - 4,351 through 4,365 (of 7,429 total)