03-06-2015
This room i for registering or account problems...
Please register if you wish to post in our forums, thanks
Thread closed
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
Hi,
I would like to know how to update a table in Oracle database, if a command in one shell script either successfully completes or it fails.(like Y if its success or N if its a failure)
While the command is running,I am able to view the log file created in the Unix machine.After the command... (2 Replies)
Discussion started by: ann_124
2 Replies
2. Shell Programming and Scripting
Hi friends,
I have to do the following things :
1) there should be a shell script returning the returning the return code of the script. and i have to add some more details like on which machine is has run , at what time and other details and then using plsql i have to add a row to Oracle... (3 Replies)
Discussion started by: sveera
3 Replies
3. Shell Programming and Scripting
Hi friends,
i am having a variable declared in .profile.i am changing its value in a shell script and then i am connecting to oracle and then from there i am calling a .sql called update.sql
STATUS is the variable declared in the .profile
===============================
if
sqlplus <<END... (3 Replies)
Discussion started by: sveera
3 Replies
4. Shell Programming and Scripting
Hi,
I have several users to create on my test Oracle database taking the scripts from the Production Oracle database. I have a separate text file where I have user-id and passwords maintained. I need help in writing a shell script to go thru the user creation scripts and replace VALUES... (1 Reply)
Discussion started by: rparavastu
1 Replies
5. Shell Programming and Scripting
Hi
Can we create a rectangular table as i have attached in the query .
This is primarily for populating the created table with data gathered .
Hope I made myself clear ...
Pls suggest
Thanks (1 Reply)
Discussion started by: ultimatix
1 Replies
6. Shell Programming and Scripting
Hi, unix gurnis
I need help for following requirement for writing a shell scritp.
log in to oracle database, query one table total records (select count(*) from table1), pass the return value to a file.
Thanks in advance (2 Replies)
Discussion started by: ken002
2 Replies
7. Shell Programming and Scripting
Hi,
I want to write a shell script which will export data from oracle table .
I don't want to save that data . I want the queries .
Right now i am right clicking on the table and clicking on export as to my desktop .
Please let me know if any one have any idea . (2 Replies)
Discussion started by: honey26
2 Replies
8. Shell Programming and Scripting
My Code is
get_week_date()
{
`sqlplus -s ${DQM_SQL_LOGON}@${DQM_SID} << EOF
SET ECHO OFF
SET FEEDBACK OFF
SET PAGES 0
SET SERVEROUTPUT ON
SET VERIFY OFF
SET TRIMSPOOL ON
(update file_level_qc fq set FQ.DATA_FILE_NAME='Hyvee_Pharmacy_Solutions_201304_v1.txt'... (2 Replies)
Discussion started by: karthick.cho
2 Replies
9. Shell Programming and Scripting
Below is my code where i tried using table tag to print out put in table but its not working
#!/bin/ksh
#] && . ./.profile 2>/dev/null
if test -f '.profile'; then . ./.profile; fi;
#. .profile
LOG_DIR=/app/rpx/jobs/scripts/just/logs
sendEmail()
{
pzCType="$1";... (5 Replies)
Discussion started by: ankit.mca.aaidu
5 Replies
10. UNIX for Advanced & Expert Users
LOG_DIR=/app/rpx/jobs/scripts/just/logs
sendEmail()
{
pzCType="$1"; pzTitle="$2"; pzMsg="$3"; pzFrom="$4"; pzTo="$5"; pzFiles="$6"; pzReplyTo="$7"
(
echo "From: $pzFrom\nTo: $pzTo\nSubject: $pzTitle${pzReplyTo:+\nReply-To: $pzReplyTo}"
] && echo... (1 Reply)
Discussion started by: ankit.mca.aaidu
1 Replies
THREAD(3) 1 THREAD(3)
The Thread class
INTRODUCTION
When the start method of a Thread is invoked, the run method code will be executed in separate Thread, asynchronously.
After the run method is executed the Thread will exit immediately, it will be joined with the creating Thread at the appropriate time.
Warning
Relying on the engine to determine when a Thread should join may cause undesirable behaviour; the programmer should be explicit,
where possible.
CLASS SYNOPSIS
Thread
Threadextends
ThreadedCountableTraversableArrayAccess
Methods
o public void Thread::detach (void )
o public integer Thread::getCreatorId (void )
o publicstatic Thread Thread::getCurrentThread (void )
o publicstatic integer Thread::getCurrentThreadId (void )
o public integer Thread::getThreadId (void )
o publicstatic mixed Thread::globally (void )
o public boolean Thread::isJoined (void )
o public boolean Thread::isStarted (void )
o public boolean Thread::join (void )
o public void Thread::kill (void )
o public boolean Thread::start ([integer $options])
Inherited methods
o public array Threaded::chunk (integer $size, boolean $preserve)
o public integer Threaded::count (void )
o public bool Threaded::extend (string $class)
o public Threaded Threaded::from (Closure $run, [Closure $construct], [array $args])
o public array Threaded::getTerminationInfo (void )
o public boolean Threaded::isRunning (void )
o public boolean Threaded::isTerminated (void )
o public boolean Threaded::isWaiting (void )
o public boolean Threaded::lock (void )
o public boolean Threaded::merge (mixed $from, [bool $overwrite])
o public boolean Threaded::notify (void )
o public boolean Threaded::pop (void )
o public void Threaded::run (void )
o public mixed Threaded::shift (void )
o public mixed Threaded::synchronized (Closure $block, [mixed $...])
o public boolean Threaded::unlock (void )
o public boolean Threaded::wait ([integer $timeout])
PHP Documentation Group THREAD(3)