Oracle empty strings?

This is why I've never understood why Oracle is so popular. They don't actually follow the SQL standard, based on a silly decision they made many years ago.

This is why I've never understood why Oracle is so popular. They don't actually follow the SQL standard, based on a silly decision they made many years ago. The Oracle 9i SQL Reference states (this has been there for at least three major versions): Oracle currently treats a character value with a length of zero as null.

However, this may not continue to be true in future releases, and Oracle recommends that you do not treat empty strings the same as nulls. But they don't say what you should do. The only ways I've ever found to get around this problem are either: have a sentinel value that cannot occur in your real data to represent NULL (e.

G, "deoxyribonucleic" for a surname field and hope that the movie stars don't start giving their kids weird surnames as well as weird first names :-). Have a separate field to indicate whether the first field is valid or not, basically what a real database does with NULLs.

Based on a silly decision they made many years ago" Yes, because backwards compatibility is never an issue. Oracle can safely change the behavior of empty strings without breaking boatloads of code that rely on this behavior -. - – NullUserException?

Aug 27 at 15:30 @Null, there are any number of ways you can fix this without breaking compatibility. One jumped into my head within a second of reading your comment, that of allowing a flag to be set for specific code that would run it in "conforming" mode. That way, if you don't explicitly set the flag for all of your code, you have perfect compatibility.

If you want specific code to treat NULLs correctly, set the flag for it. Once you're convinced you have no rubbish code any more, set the flag globally. These "kludge" bits have been around at least since the days of Data General :-) – paxdiablo Aug 27 at 22:34 That would be similar to SQL Server's ANSI NULLS (eg: SET ANSI NULLS ON), but having different environment behaving differently can be a source of great confusion.

– NullUserException? Aug 27 at 22:50.

It seems the least pain-laden way in many respects. If you can't force (use) a single blank, or maybe a Unicode Zero Width Non-Break Space (U+FEFF), then you probably have to go the whole hog and use something implausible such as 32 Z's to indicate that the data should be blank but isn't because the DBMS in use is Orrible.

What is the reason behind you statement, "non-empty default value is not allowed in our case.

The reason is - if I could define default value - I wouldnt care about null state of field. Define in model. Our goal is to have empty values, not nulls; – Vugluskr Mar 28 '09 at 13:56.

Empty string and NULL in Oracle are the same thing. You want to allow empty strings but disallow NULLs. You have put a NOT NULL constraint on your table, which is the same as a not-an-empty-string constraint.

If you remove that constraint, what are you losing?

Sharp model definition, nothing else. – Vugluskr Mar 29 '09 at 20:53.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions