Tables [dbo].[ujo_rep_daily]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count0
Created11:13:13 AM Wednesday, March 07, 2007
Last Modified11:13:13 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Key rep_daily_PUC: hourhourint4
No
hour_displayvarchar(32)32
No
js_running_nint4
Yes
js_running_pfloat8
Yes
js_starting_nint4
Yes
js_starting_pfloat8
Yes
js_success_nint4
Yes
js_success_pfloat8
Yes
js_failure_nint4
Yes
js_failure_pfloat8
Yes
js_terminated_nint4
Yes
js_terminated_pfloat8
Yes
js_onhold_nint4
Yes
js_onhold_pfloat8
Yes
js_onice_nint4
Yes
js_onice_pfloat8
Yes
js_inactive_nint4
Yes
js_inactive_pfloat8
Yes
js_activated_nint4
Yes
js_activated_pfloat8
Yes
js_restart_nint4
Yes
js_restart_pfloat8
Yes
jc_jrun_nint4
Yes
jc_jfail_nint4
Yes
jc_jforce_nint4
Yes
jc_jrestart_nint4
Yes
jc_quewait_nint4
Yes
jc_kill_nint4
Yes
jc_jedit_nint4
Yes
jc_svcdesk_nint4
Yes
jc_svcdesk_pfloat8
Yes
ag_alarmres_nfloat8
Yes
ac_alarm_nint4
Yes
ac_noresponse_nint4
Yes
ac_jobfail_nint4
Yes
ac_stjobfail_nint4
Yes
ac_maxretry_nint4
Yes
ac_maxrunt_nint4
Yes
ac_minrunt_nint4
Yes
ac_dbroll_nint4
Yes
ac_scroll_nint4
Yes
ac_schshut_nint4
Yes
Indexes Indexes
NameColumnsUnique
Cluster Key rep_daily_PUC: hourrep_daily_PUChour
Yes
Permissions
TypeActionOwning Principal
GrantDeleteujoadmin
GrantInsertujoadmin
GrantSelectujoadmin
GrantUpdateujoadmin
SQL Script
CREATE TABLE [dbo].[ujo_rep_daily]
(
[hour] [int] NOT NULL,
[hour_display] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[js_running_n] [int] NULL,
[js_running_p] [float] NULL,
[js_starting_n] [int] NULL,
[js_starting_p] [float] NULL,
[js_success_n] [int] NULL,
[js_success_p] [float] NULL,
[js_failure_n] [int] NULL,
[js_failure_p] [float] NULL,
[js_terminated_n] [int] NULL,
[js_terminated_p] [float] NULL,
[js_onhold_n] [int] NULL,
[js_onhold_p] [float] NULL,
[js_onice_n] [int] NULL,
[js_onice_p] [float] NULL,
[js_inactive_n] [int] NULL,
[js_inactive_p] [float] NULL,
[js_activated_n] [int] NULL,
[js_activated_p] [float] NULL,
[js_restart_n] [int] NULL,
[js_restart_p] [float] NULL,
[jc_jrun_n] [int] NULL,
[jc_jfail_n] [int] NULL,
[jc_jforce_n] [int] NULL,
[jc_jrestart_n] [int] NULL,
[jc_quewait_n] [int] NULL,
[jc_kill_n] [int] NULL,
[jc_jedit_n] [int] NULL,
[jc_svcdesk_n] [int] NULL,
[jc_svcdesk_p] [float] NULL,
[ag_alarmres_n] [float] NULL,
[ac_alarm_n] [int] NULL,
[ac_noresponse_n] [int] NULL,
[ac_jobfail_n] [int] NULL,
[ac_stjobfail_n] [int] NULL,
[ac_maxretry_n] [int] NULL,
[ac_maxrunt_n] [int] NULL,
[ac_minrunt_n] [int] NULL,
[ac_dbroll_n] [int] NULL,
[ac_scroll_n] [int] NULL,
[ac_schshut_n] [int] NULL
) ON [PRIMARY]
GO
CREATE UNIQUE CLUSTERED INDEX [rep_daily_PUC] ON [dbo].[ujo_rep_daily] ([hour]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ujo_rep_daily] TO [ujoadmin]
GRANT INSERT ON  [dbo].[ujo_rep_daily] TO [ujoadmin]
GRANT DELETE ON  [dbo].[ujo_rep_daily] TO [ujoadmin]
GRANT UPDATE ON  [dbo].[ujo_rep_daily] TO [ujoadmin]
GO
Uses