Book a Demo

Author Topic: Is there any documentation of database details  (Read 7414 times)

Arshad

  • EA User
  • **
  • Posts: 292
  • Karma: +21/-1
    • View Profile
Is there any documentation of database details
« on: June 19, 2015, 01:14:51 pm »
Hi i need to find under which tables these details of an elements are stored NOTES and TESTCASES are stored .

In t_object i can't find the notes column in it.

Does the notes and Testcases are stored in seperate trable..! if so can anyone please tell me the table name..!  :-[ :-[ :-[

VKN

  • EA User
  • **
  • Posts: 187
  • Karma: +9/-1
    • View Profile
Re: Is there any documentation of database details
« Reply #1 on: June 19, 2015, 01:58:44 pm »
Quote
In t_object i can't find the notes column in it.
t_object.Note
t_objecttests

Arshad

  • EA User
  • **
  • Posts: 292
  • Karma: +21/-1
    • View Profile
Re: Is there any documentation of database details
« Reply #2 on: June 19, 2015, 02:05:19 pm »
Hey thanks man actually t_objecttests Works.

But t_object.Notes doesn't return me any values.
select * from t_object works fine.
But select t_object.Note from t_object returns no results :( :(

VKN

  • EA User
  • **
  • Posts: 187
  • Karma: +9/-1
    • View Profile
Re: Is there any documentation of database details
« Reply #3 on: June 19, 2015, 03:33:31 pm »
Quote
Hey thanks man actually t_objecttests Works.

But t_object.Notes doesn't return me any values.
select * from t_object works fine.
But select t_object.Note from t_object returns no results :( :(
Try:
select Note as Notes from t_object

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Is there any documentation of database details
« Reply #4 on: June 19, 2015, 04:20:06 pm »
EA does something funny with the Note column, so you'll have to give it another and only then it will show up.

Something else to remember is to always put the AS in UPPPERCASE.
It will not matter in some places, but it will in others.

Geert