Viewing 4 posts - 1 through 4 (of 4 total)
You are right.
I was following the original poster's code in functionality, looking for char fields of maximum size.
August 30, 2011 at 7:36 am
While I would be inclined to use the light-weight solution of creating more schemas, oracle also allows you to create multiple independent databases on the same server. You can use...
August 30, 2011 at 7:25 am
You could do this query without resorting to using sysobjects and sysindexes (use information_schema)
For example:
select table_name
from information_schema.tables
where table_name not in (select distinct table_name
...
August 30, 2011 at 7:14 am
This highlights something that that DOD has known for a long time: the best way to guard a system from attack via connections is to have no connections.
Since microprocessors are...
April 11, 2011 at 8:50 am
Viewing 4 posts - 1 through 4 (of 4 total)