physical delete parent - child


 
Thread Tools Search this Thread
Top Forums Programming physical delete parent - child
# 1  
Old 10-15-2010
Java physical delete parent - child

hi ,

I have 4 tables

1.table 1

2.table 2 ==> delete from here
3.table 3
4.table 4


table 2 & table 3 has pk_fk relationship

table 1 & table 4 ha spk_fk relationship

basically i wanted to do physical delete few rows from table 2 (Parent),
it should delete from child table rows to parent rows. ( since we have pk_fk relation ship)
I am looking gerneral way of deleting all those from child table rows to parent table rows.


Please help me to get advanced way of delete the rows.

---------- Post updated at 09:00 PM ---------- Previous update was at 08:58 PM ----------

i forgot to mention the software. I am looking oralce10g sql/ sql/plus solution.

thanks in advance.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. How to Post in the The UNIX and Linux Forums

Help me, write a bash script to delete parent entry with all their child entry in LDAP UNIX server

Hi All, Please help me and guide me to write a bash/shell script on Linux box to delete parent entry with all their child entries. example: Parent is : ---------- dn: email=yogesh.kumar@wipro.com, o=wipro, o=in child is: ---------- dn: cn: yogesh kumar, email=yogesh.kumar@wipro.com,... (1 Reply)
Discussion started by: Chand
1 Replies

2. UNIX for Dummies Questions & Answers

parent and child directory

does anyone know how to check in an 'if' statement if a particular directory is a child directory of a particular directory? help ~ (2 Replies)
Discussion started by: ymc1g11
2 Replies

3. Shell Programming and Scripting

forking a child process and kill its parent to show that child process has init() as its parent

Hi everyone i am very new to linux , working on bash shell. I am trying to solve the given problem 1. Create a process and then create children using fork 2. Check the Status of the application for successful running. 3. Kill all the process(threads) except parent and first child... (2 Replies)
Discussion started by: vizz_k
2 Replies

4. Homework & Coursework Questions

Need help with deleting childīs parent and child subprocess

1. The problem statement, all variables and given/known data: I need to make an program that in a loop creates one parent and five children with fork(). The problem i'm trying to solve is how to delete the parent and child of the childīs process. 2. Relevant commands, code, scripts,... (0 Replies)
Discussion started by: WhiteFace
0 Replies

5. Programming

To share fd between parent and child

i used function fork(). so i made two process. parent process accepted socket fd and writing to shared memory. then now. how can child process share parent's socket fd? is this possible? Thanks in advance (1 Reply)
Discussion started by: andrew.paul
1 Replies

6. UNIX for Advanced & Expert Users

Child Killing Parent

Hi all, I am writing a script which calls other third party scripts that perform numerous actions. I have no control over these scripts. My problem is, one of these scripts seems to execute and do what it is meant to do, but my calling / parent script always exits at that point. I need to... (4 Replies)
Discussion started by: mark007
4 Replies

7. Shell Programming and Scripting

Parent/Child Processes

Hello. I have a global function name func1() that I am sourcing in from script A. I call the function from script B. Is there a way to find out which script called func1() dynamically so that the func1() can report it in the event there are errors? Thanks (2 Replies)
Discussion started by: yoi2hot4ya
2 Replies

8. UNIX for Dummies Questions & Answers

kill parent and child

Hello all, I have gone through the search and looked at posting about idle users and killing processes. Here is my question I would like to kill an idle user ( which I can do) but how can I asure that all of his process is also killed whit out tracing his inital start PID. I have tried this on a... (4 Replies)
Discussion started by: larry
4 Replies

9. Filesystems, Disks and Memory

How hard can it be? ps child/parent

:( Since I'm fairly new to the scene and don't have much experience in shell programming, I decided to check out the net for a useful script or two. What I'm looking for is a script that would let me enter a PID and then show the process tree associated with it. So it would display the (grand-)... (2 Replies)
Discussion started by: velde046
2 Replies

10. UNIX for Dummies Questions & Answers

what are parent and child processes all about?

I don't follow what these are... this is what my text says... "When a process is started, a duplicate of that process is created. This new process is called the child and the process that created it is called the parent. The child process then replaces the copy for the code the parent... (1 Reply)
Discussion started by: xyyz
1 Replies
Login or Register to Ask a Question
XtParseAcceleratorTable()												 XtParseAcceleratorTable()

Name
  XtParseAcceleratorTable - compile an accelerator table into its internal representation.

Synopsis
  XtAccelerators XtParseAcceleratorTable(table)
	 String table;

Inputs
  table     Specifies the accelerator table to compile.

Returns
  The compiled form of table.

Description
  XtParseAcceleratorTable()  compiles  the accelerator table into its opaque internal representation.  This compiled table can be used to set
  the XtNaccelerators resource of a widget.

  The syntax of the string form of an accelerator table is the same as that of a translation table, and is  described  in  Appendix  F.   The
  interpretation  of  the  #augment  and  #override  directives is different in accelerator tables than in translation tables, however.  This
  directive, if specified, applies to what will happen when the accelerator is installed; that is, whether or not  the	accelerator  transla-
  tions  will  override  the  translations in the destination widget.  The default is #augment, which means that the accelerator translations
  have lower priority than the destination translations.  The #replace directive is ignored for accelerator tables.

Usage
  An accelerator binds an event sequence in one widget to actions in another.  Accelerators are set as a resource of a widget but do not take
  effect until they are "installed" on a destination widget.  See XtInstallAccelerators().

  When	an  accelerator  table	is  specified  in a resource file, it is automatically parsed by one of Xt's converters, and XtParseAccelera-
  torTable() is not used.

  Another way to parse an accelerator table is to use the XtVaTypedArg feature at  XtVaCreateWidget()  or  XtVaSetValues()  and  specify  the
  string form directly.  This will invoke the appropriate resource converter to compile the table.

See Also
  XtInstallAccelerators(1), XtInstallAllAccelerators(1).

Xt - Translations and Actions												 XtParseAcceleratorTable()