Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

drop_index(7) [suse man page]

DROP 
INDEX(7) SQL Commands DROP INDEX(7) NAME
DROP INDEX - remove an index SYNOPSIS
DROP INDEX [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ] DESCRIPTION
DROP INDEX drops an existing index from the database system. To execute this command you must be the owner of the index. PARAMETERS
IF EXISTS Do not throw an error if the index does not exist. A notice is issued in this case. name The name (optionally schema-qualified) of an index to remove. CASCADE Automatically drop objects that depend on the index. RESTRICT Refuse to drop the index if any objects depend on it. This is the default. EXAMPLES
This command will remove the index title_idx: DROP INDEX title_idx; COMPATIBILITY
DROP INDEX is a PostgreSQL language extension. There are no provisions for indexes in the SQL standard. SEE ALSO
CREATE INDEX [create_index(7)] SQL - Language Statements 2010-05-14 DROP INDEX(7)

Check Out this Related Man Page

DROP 
LANGUAGE(7) SQL Commands DROP LANGUAGE(7) NAME
DROP LANGUAGE - remove a procedural language SYNOPSIS
DROP [ PROCEDURAL ] LANGUAGE [ IF EXISTS ] name [ CASCADE | RESTRICT ] DESCRIPTION
DROP LANGUAGE removes the definition of a previously registered procedural language. You must be a superuser or the owner of the language to use DROP LANGUAGE. PARAMETERS
IF EXISTS Do not throw an error if the language does not exist. A notice is issued in this case. name The name of an existing procedural language. For backward compatibility, the name can be enclosed by single quotes. CASCADE Automatically drop objects that depend on the language (such as functions in the language). RESTRICT Refuse to drop the language if any objects depend on it. This is the default. EXAMPLES
This command removes the procedural language plsample: DROP LANGUAGE plsample; COMPATIBILITY
There is no DROP LANGUAGE statement in the SQL standard. SEE ALSO
ALTER LANGUAGE [alter_language(7)], CREATE LANGUAGE [create_language(7)], droplang(1) SQL - Language Statements 2010-05-14 DROP LANGUAGE(7)
Man Page

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to scan a file for literal, return 0 or 1 if found?

How can i scan a file in a UNIX script and look for a particular keyword? For example if i wanted to scan the file "lpcmp165.out" and see if it contains the term "error" or "ERROR" and then return a 0 or 1 or some indicator as such? Detail example: sqlplus -s xx/yyyyyyy#@zzz <<EOF >... (11 Replies)
Discussion started by: bobk544
11 Replies

2. UNIX for Advanced & Expert Users

Help required in this script.

Hi Everyone, Please find below the script, I needed to understand step by step:confused:. Please If someone can help me out i will be very greatful:D. Please Guide me in a way which can help me out in figuring what this script doing on my server. ... (3 Replies)
Discussion started by: jojo123
3 Replies

3. Shell Programming and Scripting

help required in understanding this script!!!

Hi Everyone, Please find below the script, I needed to understand step by step:confused:. Please If someone can help me out i will be very greatful:D. Please Guide me in a way which can help me out in figuring what this script doing on my server. ... (1 Reply)
Discussion started by: jojo123
1 Replies

4. Shell Programming and Scripting

Storing the contents of a file in a variable

There is a file named file.txt whose contents are: +-----------------------------------+-----------+ | Variable_name | Value | +-----------------------------------+-----------+ | Aborted_clients | 0 | | Aborted_connects | 25683... (6 Replies)
Discussion started by: proactiveaditya
6 Replies

5. Shell Programming and Scripting

Unix script enhancement

Hi, Please help me out with this new enhancment with this shell script which i have written below. ******************************************************** #!/bin/ksh #File contains Only New Records that sent in the Current Load export ORACLE_BASE=/oracle export... (18 Replies)
Discussion started by: msrahman
18 Replies

6. Programming

PLSQL

HI, When am creating one package body,its throwing error, Code which am using to create is: CREATE OR REPLACE PACKAGE BODY "MAMPROD"."PKG_QS_ADMIN" AS -- ============================================================================ PROCEDURE CREATE_PARAMETERS IS BEGIN ... (2 Replies)
Discussion started by: Sanal
2 Replies

7. Shell Programming and Scripting

Search for string on a range of lines

Hi, I am trying to parse a file searching for specific set of string and then within those set of strings finding a keyword. The script works the way that I intended it to be but I thought it could be a lot simpler may be. Any advice will be much appreciated. The script at the moment is as... (1 Reply)
Discussion started by: newbie_01
1 Replies