Sponsored Content
Full Discussion: Getting AIX certification
Operating Systems AIX Getting AIX certification Post 302802663 by malayo on Saturday 4th of May 2013 08:44:32 AM
Old 05-04-2013
hi atul,

where did you take your exam and how much did you pay?
 

10 More Discussions You Might Find Interesting

1. AIX

aix certification

Hi Can any one let me know from where i can give aix certification exam. (3 Replies)
Discussion started by: vjm
3 Replies

2. AIX

Reg books of Aix certification

hi, I am satheesh Kumar. I am going to take IBM:AIX Basic Operations V5;Test 190 certification. I couldnt find good study material for that. So, Can any one suggest me some good books or e-study material for that. (1 Reply)
Discussion started by: satheesh83
1 Replies

3. AIX

Aix Certification Information

Hi, I want to know what is next certification after 222, Any Idea? (1 Reply)
Discussion started by: manoj.solaris
1 Replies

4. AIX

Aix certification (223)

Hi, I would like to complete AIX certification (code -223). Is there any difference between old 222 and 223 exam..? Please guide me in getting the docs for preparation of exam 223..I have got redbook "IBM Certification Study Guide Eserver p5 and pSeries Administration and Support for AIX 5L... (8 Replies)
Discussion started by: to_bsr
8 Replies

5. AIX

AIX Certification

Just wondering if this is worth having? Any thoughts, opinions welcomed. (1 Reply)
Discussion started by: bbbngowc
1 Replies

6. AIX

IBM AIX certification (Test 00190)

I am planning to do AIX certification (190). Please can anyone suggest me a book from where I can prepare. Waiting anxiously for your reply !!! NOMEE (3 Replies)
Discussion started by: nomeealy
3 Replies

7. AIX

aix certification

hi, hi i want to give aix 000-400 system admin cirtification can any body help me in getting dumps. (1 Reply)
Discussion started by: pradeep panigra
1 Replies

8. AIX

Information required for AIX certification

Hello friends, I want some information on AIX certification and want to give the AIX certification exam but not getting the proper information required. Basically when I am trying to search the information about this certification getting different options like "AIX p series certification" Aix... (6 Replies)
Discussion started by: naman agarwal
6 Replies

9. UNIX for Dummies Questions & Answers

can i do AIX certification..

Hi all, I heard abt AIX course, is it good for my carrer?..:confused: I am a Bsc graduate.. Thanks in advance.. (1 Reply)
Discussion started by: gowtham16
1 Replies

10. AIX

AIX certification

Hello Team, Am working as a system consultant for the AIX 6.1 OS which is running on IBM Power 740 past one year. I've part of installation, administration, security, user administration and configuring HACMP work's. I would like to get certify in AIX 6.1 and HACMP. Please... (1 Reply)
Discussion started by: gowthamakanthan
1 Replies
DROP 
FUNCTION(7) SQL Commands DROP FUNCTION(7) NAME
DROP FUNCTION - remove a function SYNOPSIS
DROP FUNCTION [ IF EXISTS ] name ( [ [ argmode ] [ argname ] argtype [, ...] ] ) [ CASCADE | RESTRICT ] DESCRIPTION
DROP FUNCTION removes the definition of an existing function. To execute this command the user must be the owner of the function. The argu- ment types to the function must be specified, since several different functions can exist with the same name and different argument lists. PARAMETERS
IF EXISTS Do not throw an error if the function does not exist. A notice is issued in this case. name The name (optionally schema-qualified) of an existing function. argmode The mode of an argument: IN, OUT, INOUT, or VARIADIC. If omitted, the default is IN. Note that DROP FUNCTION does not actually pay any attention to OUT arguments, since only the input arguments are needed to determine the function's identity. So it is sufficient to list the IN, INOUT, and VARIADIC arguments. argname The name of an argument. Note that DROP FUNCTION does not actually pay any attention to argument names, since only the argument data types are needed to determine the function's identity. argtype The data type(s) of the function's arguments (optionally schema-qualified), if any. CASCADE Automatically drop objects that depend on the function (such as operators or triggers). RESTRICT Refuse to drop the function if any objects depend on it. This is the default. EXAMPLES
This command removes the square root function: DROP FUNCTION sqrt(integer); COMPATIBILITY
A DROP FUNCTION statement is defined in the SQL standard, but it is not compatible with this command. SEE ALSO
CREATE FUNCTION [create_function(7)], ALTER FUNCTION [alter_function(7)] SQL - Language Statements 2010-05-14 DROP FUNCTION(7)
All times are GMT -4. The time now is 02:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy