Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Table locations

Status
Not open for further replies.

vertcnc

IS-IT--Management
Jun 9, 2005
22
Where are the data tables located at in version 8.0 mssql.
When I go to tools> and find the table descriptions it returns a list of tables. But when I go to the sql server database tw great plains databases are present "Dynamics" and "Companydata". The table names do not match the ones listed from the tolls menu. I trying to create a report within Crystal and would greatly appreciate some help.
Thanks
 
try running this code - it should tell you which company is what

Code:
use dynamics

select Interid, cmpnynam
from sy01500

This will give you the company names --- In the tools look at the PHYSICAL name --- that should be the table name within the DB

this help?
 
I am pretty much a newbie in sql. I have located the tables within the odbc connection within crystal reports. The table look close but they have some prefixes such as zd_sop10100_1.1. Then when i look at the fields in those tables they also have some additional Prefixes such as @.

Thanks Tim
 
Additionally when i look at the table via the sql server manager. They look identical to the tools> table descriptions. They only have the added charactors when viewing through the odbc connection.
 
in Crystal reports under 'file' 'options' find the tab that contains the check box for 'stored procedures' and make sure to uncheck it.
 
That did it. Thanks for the help.

Tim
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top