Not able to access SELECT * FROM ao_60db71_issueranking table from postgres database

Tushar May 21, 2015

When I write the following query in postgres Dataase, it gives me error that ao_60db71_issueranking table does not exist

SELECT * FROM ao_60db71_issueranking where issue_id in (SELECT id FROM jiraissue)


Please help.

2 answers

0 votes
rrudnicki
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 21, 2015

Hi Tushar, 

With AO Tables, usually I need to put the table's name between " ". For example:

confluence573=# select * from AO_7CDE43_RECIPIENT;

ERROR:  relation "ao_7cde43_recipient" does not exist

LINE 1: select * from AO_7CDE43_RECIPIENT;

                      
confluence573=# 

confluence573=# 

confluence573=# 

confluence573=# select * from "AO_7CDE43_RECIPIENT";

 ID | INDIVIDUAL | NOTIFICATION_ID | PARAM_DISPLAY | PARAM_VALUE | SERVER_ID | TYPE 

----+------------+-----------------+---------------+-------------+-----------+------

(0 rows)
confluence573=#

 

Regards, 

Renato Rudnicki

 

0 votes
Boris Berenberg
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 21, 2015

Try AO_60DB71_ISSUERANKING instead.

Suggest an answer

Log in or Sign up to answer