11G table appears to have "No data found" after its creation.

  • I'm using Application Express and after creating this table

    CREATE TABLE "Tournament _Hands " (

    "T_hand_number" NUMBER(10) NOT NULL,

    "T_table_number" NUMBER(10) NOT NULL,

    "T_time_of_hand" DATE NULL,

    "T_no_players_involved" NUMBER(10) NULL,

    "T_no_players_limp" DOUBLE PRECISION NULL,

    "T_players_raise " DOUBLE PRECISION NULL,

    "T_player_3bet" DOUBLE PRECISION NULL,

    "T_pot_size" NUMBER(10,2) NULL,

    "T_payers_ to_showdown" NUMBER(10) NULL,

    PRIMARY KEY ("T_hand_number")

    );

    The table appears without columns or anything when I try to look at its structure

    through "find tables".

    Whats wrong?

  • There are a few people here on ssc that know Oracle, but you would probably get an aswer to this question faster on a site dedicated to Oracle. This is a MS SQL Server site and you did post the question in a SQL Server 2008 forum.

  • fish that table is for an Oracle definition, and not SQL server.

    just creating the table is not enough, don't you need to insert some data into the table before querying it (otherwise there's no data found, right?)

    application express connects to Oracle? it could be that the USER you are using can create objects, but maybe not under the user you navigate with via the GUI?

    ie i might be granted to "PROD" but i create objects under a different user, say "Lowell", so browsing thru "PROD" tables shows me nothing?

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply