06-01-2009 08:09 AM - edited 03-14-2019 04:09 AM
I need to do a count of all the scripts Call Routing, Administrative, and Queuing scripts. How and where can I obtain that information.
thanks
06-01-2009 12:13 PM
I think you are on the right track. Do a count (*) on the Master_Script table where Deleted = 0. That should give you both the routing and admin scripts. Admin and routing scripts are defined by the value of ScriptType (DBSMALLINT).
Look at the Schema Guide.
Regards,
Geoff
06-04-2009 02:50 PM
Try this SQL against an AW SQL database:
SELECT
CASE
WHEN ScriptType = 1 THEN 'Routing Script'
WHEN ScriptType = 2 THEN 'Admin Script'
ELSE 'Unknown'
END AS [Type],
COUNT(MasterScriptID) AS [Count]
FROM Master_Script
GROUP BY ScriptType
06-05-2009 04:14 AM
Thanks
I was able to get this out using a statement that pulled everything.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide