If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > please help me for the error SQL0204N in db2

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-21-11, 08:06
souravmondal10 souravmondal10 is offline
Registered User
 
Join Date: Jun 2011
Posts: 8
please help me for the error SQL0204N in db2

i am working with the sample database.i have a login table in sample database.when i am working in db2 control center and issuing any sql ,it is working very fine.but when i am issuing this sql from a java application it is showing a error.my username and password for the database is db2admin and db2admin.connection to the database is successful.
please help me.i tried this in xp and win7.same result.
error is:

[IBM][CLI Driver][DB2/NT] SQL0204N "DB2ADMIN.LOGIN" is an undefined name. SQLS
TATE=42704


i am issuing the sql----> select * from login
but it is not working.
i have also tried-------> select * from LOGIN
select * from sample.login
select * from db2admin.login
how to solve it?
Reply With Quote
  #2 (permalink)  
Old 06-21-11, 08:38
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
Clearly, the LOGIN table belongs to some other schema. You can find out what schema that is by running
Code:
select tabschema from syscat.tables where tabname = 'LOGIN'
Reply With Quote
  #3 (permalink)  
Old 06-22-11, 07:10
souravmondal10 souravmondal10 is offline
Registered User
 
Join Date: Jun 2011
Posts: 8
thank u

thank u sir.i got ur point.problem solved.thank u.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On