From my SQL Server days, I was able to create bit flags. It would pack 8 to a byte. Now, I am looking to do similar things in Oracle, and there is no BIT/Boolean type.
OK, no sweat. I build a number(1) field. But what are the storage and/or performance ramifications of doing that versus using "0"/"1" CHAR(1)?
Kevin
OK, no sweat. I build a number(1) field. But what are the storage and/or performance ramifications of doing that versus using "0"/"1" CHAR(1)?
Kevin