Sponsored Content
Full Discussion: IBM BladeCenter HS20
UNIX Standards and Benchmarks UNIX & LINUX Benchmarks (Version 3.11) Linux Benchmarks IBM BladeCenter HS20 Post 302290370 by msright1981 on Monday 23rd of February 2009 05:05:15 AM
Old 02-23-2009
Can you post it on here?

Hi,

Can you post the data on here? or do you have a link to where to get it?

Thanks,
"No one Ever got fired for buying IBM"
Julie Cole

Last edited by vbe; 02-23-2009 at 09:54 AM.. Reason: removed URL (Not allowed..)
 

9 More Discussions You Might Find Interesting

1. AIX

Help-----ibm Aix???

:confused: Hello everybody, I am a totel dummy when it comes to UNIX!!! Must be wondering what I am doing here right? I'm most keen on knowing about-it-all. I need help. Wanna know all about the IBM AIX. The versions, the latest. Please tell me how do I go about my search. Thanks a... (3 Replies)
Discussion started by: rtanuja
3 Replies

2. Linux Benchmarks

IBM x445

IBM x445 8x3.0Ghz XEON, 8GB RAM SLES8 BYTE UNIX Benchmarks (Version 3.11) System -- Linux hostname 2.4.21-251-smp #1 SMP Thu Sep 23 17:22:54 UTC 2004 i686 unknown Start Benchmark Run: Wed Dec 1 17:35:55 CET 2004 4 interactive users. Dhrystone 2 without register variables ... (0 Replies)
Discussion started by: nwilkens
0 Replies

3. UNIX for Advanced & Expert Users

IBM vs SUN

Wanted to ask if you all had heard that SUN is or will desupport their hardware? Also I heard somewhere that they are in bankruptcy. Is this true? If so does anyone have any links to this info? TIA Mike (1 Reply)
Discussion started by: mcastill66
1 Replies

4. UNIX for Advanced & Expert Users

how is IBM-AIX better..?

why IBM-AIX is preferred over HP-UX ..... In what way it is better for infrastructure......? Suggestions are welcome... Suggest you read the RULES (0 Replies)
Discussion started by: bishweshwar
0 Replies

5. High Performance Computing

IBM Scheduler for High Throughput Computing on IBM Blue Gene P

A lightweight scheduler that supports high-throughput computing (HTC) applications on Blue Gene/P. (NEW: 06/12/2008 in grid) More... (0 Replies)
Discussion started by: Linux Bot
0 Replies

6. AIX

ibm aix L1

hello all, can anyone send me ibm aix L1 interview questions... thank u guys...jiyojith (0 Replies)
Discussion started by: jiyojith
0 Replies

7. UNIX for Dummies Questions & Answers

New OS for IBM server

I was recently given an older 1998 RS/6000 IBM machine supposedly called a Shark and once used by either an internet dial up or hosting company from what I understand. Regardless, in talking to the wife of the previous owner who died, and from what I understand, it hasn't been cleared of original... (5 Replies)
Discussion started by: W.A.C
5 Replies

8. AIX

IBM AIX on IBM Eseries & x series server

Hi, I want to know whether IBM AIX can be installed on the IBM e series and x series server hardware? Thanks & Regards Arun (2 Replies)
Discussion started by: Arun.Kakarla
2 Replies

9. AIX

IBM Virtual Machine OS on intel x86 and x64? IBM AIX OS on IBM Virtual Machine?

Hi There, I have zero information and zero knowledge for IBM virtual machine except Amazon cloud and VMware ESXi (Only Linux OS available). Anyone could provide me the following answer - Can IBM VM been deploy on X86 and X64 (Intel Chip)? If answer is yes any chance to deploy AIX OS... (13 Replies)
Discussion started by: chenyung
13 Replies
CREATE CONSTRAINT 
TRIGGER(7) SQL Commands CREATE CONSTRAINT TRIGGER(7) NAME
CREATE CONSTRAINT TRIGGER - define a new constraint trigger SYNOPSIS
CREATE CONSTRAINT TRIGGER name AFTER event [ OR ... ] ON table_name [ FROM referenced_table_name ] { NOT DEFERRABLE | [ DEFERRABLE ] { INITIALLY IMMEDIATE | INITIALLY DEFERRED } } FOR EACH ROW EXECUTE PROCEDURE funcname ( arguments ) DESCRIPTION
CREATE CONSTRAINT TRIGGER creates a constraint trigger. This is the same as a regular trigger except that the timing of the trigger firing can be adjusted using SET CONSTRAINTS [set_constraints(7)]. Constraint triggers must be AFTER ROW triggers. They can be fired either at the end of the statement causing the triggering event, or at the end of the containing transaction; in the latter case they are said to be deferred. A pending deferred-trigger firing can also be forced to happen immediately by using SET CONSTRAINTS. PARAMETERS
name The name of the constraint trigger. This is also the name to use when modifying the trigger's behavior using SET CONSTRAINTS. The name cannot be schema-qualified -- the trigger inherits the schema of its table. event One of INSERT, UPDATE, or DELETE; this specifies the event that will fire the trigger. Multiple events can be specified using OR. table_name The (possibly schema-qualified) name of the table in which the triggering events occur. referenced_table_name The (possibly schema-qualified) name of another table referenced by the constraint. This option is used for foreign-key constraints and is not recommended for general use. DEFERRABLE NOT DEFERRABLE INITIALLY IMMEDIATE INITIALLY DEFERRED The default timing of the trigger. See the CREATE TABLE [create_table(7)] documentation for details of these constraint options. funcname The function to call when the trigger is fired. See CREATE TRIGGER [create_trigger(7)] for details. arguments Optional argument strings to pass to the trigger function. See CREATE TRIGGER [create_trigger(7)] for details. COMPATIBILITY
CREATE CONSTRAINT TRIGGER is a PostgreSQL extension of the SQL standard. SEE ALSO
CREATE TRIGGER [create_trigger(7)], DROP TRIGGER [drop_trigger(7)], SET CONSTRAINTS [set_constraints(7)] SQL - Language Statements 2010-05-14 CREATE CONSTRAINT TRIGGER(7)
All times are GMT -4. The time now is 02:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy