cancel
Showing results for 
Search instead for 
Did you mean: 

SQL Query for Scheduled Search Result

Scott__Hastings
Level 5
Partner Accredited Certified

Does anyone have a SQL Query that will return the results of each day's search. Name, Dept, Hits.Sampled, Duplicates?

 

Thanks!!

Scott D Hastings Sr
1 ACCEPTED SOLUTION

Accepted Solutions

EV_Ajay
Level 6
Employee Accredited

Hi Scott,

Please run following SQL query against CA Customer Database in SQL.

Select tis.Name,tc.Name AS 'Dept',tis.NumHits AS 'Hits',tis.SampleSize As '% sample', tis.NumDuplicates AS 'Duplicates',tis.RunDate,tis.Type

From tblIntSearches tis

Inner Join tblCase AS tc

ON tis.CaseID=tc.CaseID

Note : TYPEs

110

Immediate

111

Application Standard

112

Schedule

113

Schedule run

Res.JPG

View solution in original post

1 REPLY 1

EV_Ajay
Level 6
Employee Accredited

Hi Scott,

Please run following SQL query against CA Customer Database in SQL.

Select tis.Name,tc.Name AS 'Dept',tis.NumHits AS 'Hits',tis.SampleSize As '% sample', tis.NumDuplicates AS 'Duplicates',tis.RunDate,tis.Type

From tblIntSearches tis

Inner Join tblCase AS tc

ON tis.CaseID=tc.CaseID

Note : TYPEs

110

Immediate

111

Application Standard

112

Schedule

113

Schedule run

Res.JPG