Video Screencast Help
Search Video Help Close Back
to help
Not able to make it to Vision this year? Get a sampling in the Best of Vision on Demand group.

Generating CLIP ID List

Updated: 23 May 2011 | 3 comments
jasonwelch01's picture
0 0 Votes
Login to vote
This issue has been solved. See solution.

Hello,

Does anyone know the proper sql commands to generate list of CLIP IDs?  We're running EV9.0.1 w/ SQL 2k5 SP2 back-end

If CLIP ID lists are generated via SQL queries and points to each VaultStore database, does the query syntax change whether or not 'Collections' are enabled for that vault store?

 

Thanks in advance

Discussion Filed Under:

Comments

JesusWept2's picture
23
May
2011
0 Votes 0
Login to vote

its either When using

its either

When using Collections
USE vaultStoreDBName
SELECT RelativeFileName FROM Collection

When Not Using Collections
USE VaultStoreDBName
SELECT StoreIdentifier FROM SavesetStore

TonySterling's picture
23
May
2011
1 Vote +1
Login to vote

For collections use: SELECT

edited==> What JW2 said.  :)

For collections use:

SELECT RelativeFileName
FROM Collection

If not, use this:

SELECT StoreIdentifier AS 'Centera ClipID'
FROM SavesetStore

If you want to determine the clip for a particular saveset use this method:

Article URL http://www.symantec.com/docs/TECH43224

Tony Sterling
www.bluesource.net or www.bluesource.co.uk
Offices in the US and the UK

jasonwelch01's picture
23
May
2011
0 Votes 0
Login to vote

this is great, thanks guys

this is great, thanks guys