srini_sun has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: DBI Error
by ikegami (Patriarch) on Oct 16, 2007 at 15:48 UTC

    You're not in a sub, so @_ doesn't contain anything. Perhaps you meant @ARGV?

    I don't see how that error would result in the error message you got, so you might have another problem.

Re: DBI Error
by grep (Monsignor) on Oct 16, 2007 at 15:56 UTC
    I'm guessing it's saying the "table name doesn't exist", so if you're sure about the spelling I would check the case of the table name.
Re: DBI Error
by runrig (Abbot) on Oct 16, 2007 at 16:41 UTC
    You could try the syntax "select column_name from schema_name.table_name" (including the schema name).
      Hi ,

      I am querying to a VIEW not TABLE . But i hope there is no difference in qureying a VIWE or a TABLE..

      Thanks Sri
        Hi All, Sorry , That was really database problem Thanks Sri