Advertisement
RyanFarley

Untitled

Nov 15th, 2017
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.33 KB | None | 0 0
  1. create view sysdba.SalesProcessPlugin
  2. as
  3.     select
  4.           p.pluginid as SalesProcessPluginID
  5.         , p.CreateUser
  6.         , p.CreateDate
  7.         , p.ModifyUser
  8.         , p.ModifyDate
  9.         , p.Name
  10.         , p.Family
  11.         , p.ReleasedDate  
  12.     from
  13.         sysdba.plugin p
  14.     where
  15.         p.type = 1
  16.         and
  17.         p.basedon is not null
  18.         and
  19.         p.userid = 'SYST00000001'
  20. go
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement