I'm creating staging tables in SQL Server to ETL data over from Oracle 11g. Using Oracle SQL Developer, I am looking at the DDL for many of these tables. Many of the columns are defined as such:
Some_Column_Name NUMBER
Since many of these columns are currently filled with NULLs, I'm not sure what the data looks like. That being said, if the data type NUMBER is specified without a precision and scale, what exactly does that mean? Is it an integer, or a dynamically scaled decimal data type?
Some_Column_Name NUMBER
Since many of these columns are currently filled with NULLs, I'm not sure what the data looks like. That being said, if the data type NUMBER is specified without a precision and scale, what exactly does that mean? Is it an integer, or a dynamically scaled decimal data type?