Video Screencast Help
Search Video Help Close Back
to help
New in the Rewards Catalog: Vouchers for "Symantec Technical Specialist" and "Symantec Certified Specialist" exams.

Altiris NS Collections and Tables for filtering

Updated: 21 May 2010 | 5 comments
lwajswaj's picture
0 0 Votes
Login to vote
This issue has been solved. See solution.

Hi All,

I've searching on internet without success a document or white paper to shows and explain all the available tables and fields in Altiris DB to create automatic collection. The best that I found is here: https://www-secure.symantec.com/connect/articles/how-guide-report-builder; however, I'm trying to get the complete "Core Inventory Table Reference".

Thanks,

Leandro

Comments

jharings's picture
17
Sep
2009
0 Votes 0
Login to vote

Are you looking for v6 or v7?

There are schema articles available for v6, but not v7.

Jim Harings
HP Enterprise Services
1st Rule of Connect Club: Mark the post that helped you the most as a 'solution'. 2nd Rule of Connect Club:You must talk about Connect club.

ludovic_ferre's picture
17
Sep
2009
1 Vote +1
Login to vote

Hi there, You can get a list

Hi there,

You can get a list of the tables containing data (inventory or event types) from the NS database (6.x or 7.x) using the following query:

select t2.name as 'Solution', dc.name as 'Dataclass name', dc.datatablename as 'Data table name'
  from dataclass dc
  join item t1
    on dc.guid = t1.guid
  join item t2
    on t1.productguid = t2.guid
 order by solution, [dataclass name]

This query returns 3 colums:

  1. [Solution] is the name of the solution that owns the dataclass.
  2. [Dataclass name] is the name of the data class
  3. [Data table name] is the name of the table where the data is stored on the database

Note that the query is sorted by solution and dataclass name, but you could add any filter to target specific solution or data type (if you are looking for event tables the datatablename will start with Evt_ whilst inventory tables start with Inv_).

Ludovic FERRÉ
Principal Remote Product Specialist
Symantec 

1st Rule of Connect Club: Mark the post that helped you the most as a 'solution'. 2nd Rule of Connect Club:You must talk about Connect

lwajswaj's picture
18
Sep
2009
0 Votes 0
Login to vote

I'm looking for v6, where can

I'm looking for v6, where can I download the schema or what's the link of the articule?

Thanks!

jharings's picture
20
Sep
2009
0 Votes 0
Login to vote

There are a few

 Altiris KB39279 - Schema of Commonly Used Views

Altiris KB25975 - AMS and CMS Schema

Jim Harings
HP Enterprise Services
1st Rule of Connect Club: Mark the post that helped you the most as a 'solution'. 2nd Rule of Connect Club:You must talk about Connect club.

lwajswaj's picture
21
Sep
2009
0 Votes 0
Login to vote

Thanks! That's what I was

Thanks! That's what I was looking for!!! :D