Home Page link  

MS RMS Database Structure

 

Point-Of-Sale Software - - MS Point Of Sale software discussed here 

get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
MS RMS Database Structure ben.fiser 10-02-2006
Posted by ben.fiser on October 2, 2006, 7:36 pm
Please log in for more thread options
Can someone give me or guide me on how to obtain the RMS database table
structure and how they are linked? My customer has the RMS software
and would like to run some of his own reports.
Thanks,
Ben


Posted by Allen on October 3, 2006, 4:27 pm
Please log in for more thread options
MS-SQL Server Query Analyzer (Store OP Admin) is difficult to get Table list
as Enterprise Manager (EM).
Thus, Create these procedures; Show and Showtables


CREATE PROCEDURE SHOW
@T_NAME VARCHAR(100)
AS
SELECT CONVERT(CHAR, COLUMN_NAME) AS NAME,
CONVERT(CHAR, DATA_TYPE) AS DATA_TYPE,
ISNULL(CHARACTER_OCTET_LENGTH, NUMERIC_PRECISION) AS SIZE,
IS_NULLABLE AS NULL_
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = @T_NAME
return

CREATE PROCEDURE SHOWTABLES AS
select CONVERT(CHAR,o.name) as TABLE_NAME
from
sysobjects o
where
o.xtype = 'U' and permissions(o.id) != 0 and o.name <> 'dtproperties'
order by o.name
RETURN


Showtables // show tables of db
Show Tablename //show structure of the table


--
ThirdOrbit POS
1167 Chess Dr. Suite B
Foster City, CA 94404
TEL: (650) 212 - 7880
FAX:(650) 212 - 7868
www.ThirdOrbitPOS.com
Email: allen@thirdorbitpos.com



"ben.fiser@gmail.com" wrote:

> Can someone give me or guide me on how to obtain the RMS database table
> structure and how they are linked? My customer has the RMS software
> and would like to run some of his own reports.
> Thanks,
> Ben
>
>

Posted by Developain on October 9, 2006, 11:47 pm
Please log in for more thread options
Here's what you can do. Hopefully you have Enterprise Manager. expend the RMS
database right click Diagram and hit new diagram. Add all tables to the
diagram and the tables will automatically link with each other. Showing you
the relationships etc.

Hope this helps

"ben.fiser@gmail.com" wrote:

> Can someone give me or guide me on how to obtain the RMS database table
> structure and how they are linked? My customer has the RMS software
> and would like to run some of his own reports.
> Thanks,
> Ben
>
>

Similar ThreadsPosted
MS RMS Database Structure October 2, 2006, 7:36 pm
Help with Database structure April 13, 2007, 2:22 pm
Sample of RMS database structure March 20, 2006, 10:02 am
RMS 2.0 Features and structure February 6, 2007, 3:26 pm
RMS Table Structure & Field Description April 7, 2009, 4:58 pm
An error occurred while attempting to Update Inventory Structure August 10, 2005, 5:36 am
Worksheet 51 to copy from HQ database to each store database July 8, 2008, 12:07 pm
Database offline error when database is local December 22, 2008, 1:42 pm
Can connect to HQ database but not Store database November 16, 2005, 12:17 am
synchronize a store database to another HQ database June 8, 2006, 9:52 am

Contact Us | Privacy Policy
This site is not affiliated with Intuit - makers of Quickbooks and Quicken software
This site is not affiliated with Sage Software - makers of Peachtree accounting software
XML SitemapXML Sitemap