|
Posted by Glenn Adams [MVP - Retail Mgmt on October 13, 2006, 3:10 pm
Please log in for more thread options think of a barcode as a Font. that series of lines just represents a
string - ItemLookupCode in the case of RMS.
They are generated on the fly (by the printer or driver) when they are
printed and they are decoded on the fly (by the scanner) when they are
read. In both cases, RMS only knows the string that is send to the
printer or received from the scanner.
--List User Tables in a database
select Name from sysobjects where type = 'U'
--List Columns for a Table
select sc.name, st.name,
case st.name when 'nvarchar' then sc.length/2 else sc.length end as length,
case sc.isnullable when 1 then 'NULL' else 'NOT NULL' end as nullable
from sysobjects so
inner join syscolumns sc on so.id = sc.id
inner join systypes st on sc.xusertype = st.xusertype
where so.name = 'customer'
Glenn Adams
Tiber Creek Consulting
http://www.tibercreek.com glenn@tibercreek.com
----------------------------------------------
Please DO NOT respond to me directly but post all responses here in the
newsgroup so that all can share the information.
Jonathan Smith wrote:
> Are the barcodes for all the ILCs stored? If so, on what table?
>
> Is there a way to get a list of all the tables in the database?
>
> Or are the barcodes generated on the fly?
>
>
> Thanks.
|