Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: List all tables without LOB columns

    You are right.

    I was following the original poster's code in functionality, looking for char fields of maximum size.

  • RE: Multiple databases in ORACLE - How?

    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...

  • RE: List all tables without LOB columns

    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

    ...

  • RE: Hacking Data

    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...

Viewing 4 posts - 1 through 4 (of 4 total)