Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: signalsys
  • Content: Threads
  • Order by date
  1. signalsys

    sendmail daemon is not working

    lssrc -s sendmail" shows it is inoperative, then i use "startsrc -s sendmail" and its' status turns to active. But about 1 minutes later it turns to inoperative again. What cause the problem? Thx in advance
  2. signalsys

    What is the difference between $@ and $* ?

    Thx in advance
  3. signalsys

    what's the meaning of TIME=${@:-5}

    what's the meaning of TIME=${@:-5}
  4. signalsys

    rsh runs Ok, but rcp command always fails

    rsh runs OK, but the rcp command below fails P670_2-doma%rcp -rp acce.cfg P670_7:/tmp/ who: 0551-012 The process is not attached to a terminal Thx in advance
  5. signalsys

    How can i refuse a user ftp to my server ?

    Two users A and B i allow A to ftp to my server , But B not. What can i do ? Thx in advance
  6. signalsys

    How to monitor Parallel DDL's execution?

    We can monitor Parallel DML's execution throught v$pq_slave. What about parallel DDL's execution, such as create index statement ?
  7. signalsys

    weird cron problem

    I once had place the following entry in crontab, I only want it to be automatically executed on August 14th 10:23 am. 23 10 14 8 1 date >> dat.out But after a week, On August 21th also Monday it was run again. it seem that cron neglect the month and day in cron. Why could this happen ? A...
  8. signalsys

    A column is needed in MV,What if i don't include this column in MV log

    I have created the following MV log and MV(empno was the only primary key in empbak). create materialized view log on empbak with primary key including new values; create materialized view mv_empbak build immediate refresh fast on commit as select empno,ename from empbak; Note that when...
  9. signalsys

    How to match the output exactly?

    I have the following devices in my system: hdiskpower10 hdiskpower100 hdiskpower101 Now i only want to get the information about hdiskpower10,so i use "lspv | grep hdiskpower10",but it outputs information about all the 3 devices: hdiskpower10 vg1 hdiskpower100 vg32 hdiskpower101 vg32 What can...
  10. signalsys

    How to compare two string variables?

    two string variables: var1="0123' var2='01BD' What syntax should i use to compare the two variables and output the bigger one? Thanks in advance.
  11. signalsys

    PINS in v$librarycache

    PINS : The number of times a PIN was requested for objects of this namespace PINHITS : The number of times all of the metadata pieces of the library object were found in memory RELOADS : Any PIN of an object that is not the first PIN performed since the object handle was created, and which...
  12. signalsys

    Any distinction between star and star_transformation ?

    What's the difference between "star" and "star_transformation" used as hints ?
  13. signalsys

    How to prevent the sort operation from happening in sort merge join ?

    SQL>explain plan for select emp.deptno,dept.deptno from emp,dept; Please look at the execution plan for the above statement,there is a sort of table emp before it is merged to table dept SELECT STATEMENT, GOAL = CHOOSE 12 70 280 MERGE JOIN CARTESIAN 12 70 280 TABLE ACCESS FULL SCOTT DEPT 2 5...
  14. signalsys

    Order by clause in an union set operation

    If i use an alias in the order by clause, error appears: SQL>select 'sing' as mydream, 3 a_dummy from dual union (select 'I''d like to teach',1 from dual union select 'the world to',2 from dual) order by a_dummy; ERROR at line 3: ORA-00904: "A_DUMMY": invalid identifier When i use a position...
  15. signalsys

    Sorts can be avoided by creating index with asc or desc attribute?

    I have the following tests with tables in scott's schemas: SQL> set autotrace trace SQL> select * from emp order by ename; 14 rows selected. Elapsed: 00:00:01.26 Execution Plan ---------------------------------------------------------- 0 SELECT STATEMENT Optimizer=CHOOSE (Cost=5...
  16. signalsys

    Problem meeted when copy a datafile to a raw device

    Oracle 9201+AIX52 db_block_size=8k I have a datafile /chhora/chh1.dbf and its size is: ls -rlt /chhora/chh1.dbf -rw-rw---- 1 oracle dba 10493952 Apr 28 10:30 /chhora/chh1.dbf Here is the calculation of the file's size: 10Mx1024x1024+8Kx1024=10493952 Now i want to copy it to a raw...
  17. signalsys

    Weird problem about "while" and "for" cycle statement in ksh

    Weird problem about "while" and "for" cycle statement in ksh Some day i found a strange phenomenon when i use a loop structure in a ksh script: (1) using "For" statement: for i in `cat aaa` > do > rsh $i hostname > done And it returns the expected value: P630_4 p630_1 P650_2 (2) using...
  18. signalsys

    checkpoint_change# in v$log?v$database?v$datafile

    checkpoint_change# in v$log?v$database?v$datafile environment: AIX5206+ORACLE9204 RAC First I supply part of the v$datafile: SQL> select file#,checkpoint_change#,checkpoint_time,name from v$datafile; 566 7751870163147 20060124 07:22:37 /dev/ryz132047...
  19. signalsys

    How to make select operation more efficient when joining three tables?

    I have three tables: business_sp_info,business_base_info,async_bizproc Now i make the following query and the output was returned slowly: SQL>select t2.id_type, t2.id_value, t2.opr_code, t2.biz_type, t2.passwd, to_char(t2.done_date,'yyyymmddhh24miss') opr_time, t3.sp_id...
  20. signalsys

    space in the temporary tablespace were largely used when create a tab

    I have created a table named "A". And table "B" is on another database and its size is about 4G. Now i want to insert into A with the content of table B using dblink and in order to use less undo segment,I use the following statements: SQL> alter table A nologging; SQL> insert /*+append*/ into...

Part and Inventory Search

Back
Top