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 strongm 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: *

  1. rawatds

    SQL Help

    I think i got it : I can Select all Group where any Ids are having expiry_date not equal to 23-DEC-2010 and then use this as a Subquery select * from table where group_id not in ( SubQuery )
  2. rawatds

    SQL Help

    Hi All, I have a requirement where i need to provide a SQL statement to front application. The data is like Login_id Login_group Expiry_date 100 1 23-DEC-2010 101 1 23-DEC-2010 102 1...
  3. rawatds

    Geting max value at runtime

    Hi, My requirement is that i have to get the MAX or Greatest of the three values from three tables and replace each value with the Hightest value. Example : select age2 = c.age - b.age, age3 = a.age - b.age, age1 = a.age from a , b , c where a.name = b.name and a.deptid = c.deptid Now my...
  4. rawatds

    SQL Performance query

    Hi Santa, The records in the table LIST_HOME and LIST_COPY are inserted as a DISTINCT value from some other tables. So is there any worth to create index on these tables. Thanks DR
  5. rawatds

    SQL Performance query

    Hi Gurus, I Have the following query which i want to tune. Select a.add, a.stamp_updt, b.cur_typ_c from record_master a, Detail_record b where a.id = p_id and a.unit_id in (select unit_id from list_home) and a.unit_c in (select unit_c from list_copy) and a.id_c = b.id_c Where...
  6. rawatds

    Oracle procedure load

    Hi As per my understanding the whole concept of package is that it loaded itself in the memory when any procedure which is defined in the package is called. is there any method which i can do or oracle itself loaded only that procedure in the memory rather then whole package which is called...
  7. rawatds

    Oracle self join

    Hi all, I have a query where i have to use a Self join on a table i want to avoid it as it is taking time. My data is : Table 1 Column1 column2 column3 x y z A B C Table 2 Column1 Column2 Column3 column4 1 2...
  8. rawatds

    unable to extend index

    Hi Mufasa Thanx a lot a ran the three above mentioned query and now my job run successfully Once again a lot rawat
  9. rawatds

    unable to extend index

    Hi Mufasa I run the freespace.sql in my database . The following is the result : SYSTEM 1 83,886,080 83,886,080 83,412,992 473,088 NO '/u01/oradata/vsis/system01.dbf' SYSTEM 81 52,428,800...
  10. rawatds

    unable to extend index

    Hi all When i run a job in my database , following error is coming : ORA-01654: unable to extend index SYS.I_COL3 by 50 in tablespace SYSTEM . I donot have much knowledge on this regard . Can anybody please help me out what i have to do to correct it. Thanx in advance rawat
  11. rawatds

    dynamic SELECT

    Hi my requirement is : 1. Create a list of server names in a file 2. User would chose from the above list (to be displayed as a menu) and do the tasks as per server selected from the menu. 3. Switch-case should be flexible i.e if we delete or add any server name onto the above list it...
  12. rawatds

    dynamic SELECT

    Hi all Is menu driven by SELECT can be a dynamic ? My requirement is that i want SELECT to be created on run time not predefine . The select should be created as per the no of words in a file thanks in advance rawat
  13. rawatds

    embedded exe file into rtf file

    Hi All I want a method in shell script which will embed the exe file into rtf file si that the rtf file can be open in word and so my exe. Actually what is happening in my system at present : The report in my system is a self-extracting Zip file with filetype '.EXE'. Double clicking on...
  14. rawatds

    Server names to be choose

    Hi everybody My requirement is : The shell script should be able to : 1. Create a list of server names in a file 2. User would chose from the above list (to be displayed as a menu) and do the tasks as per server selected from the menu. 3. Switch-case should be flexible i.e if we delete or...
  15. rawatds

    Login shell script

    Hi I search in the man goodpw but in my /usr/lib i couldnot find goodpw file also in passwd file in /etc/default i could get only for minimun character i.e. PASSLENGTH=6 but not for other constraints . Any help Regards rawat
  16. rawatds

    Login shell script

    Hi I want a shell script which run when user is trying to change its password in UNIX . The string for password should validate the following : 1) Should be 2-8 character in length 2) There should be no !,@,#,$ character 3) 1st character should always be letter 4) at least 1...
  17. rawatds

    Deleting one pattern from a file

    Hi all i wrote this script : echo " enter the string to delete " read pattern for i in `ls` do grep $pattern $i if [ $? -eq 0 ] then sed 's/$pattern//g' $i > $i.1 fi But it didnot work till sed the loop is going but i donot know if we can...
  18. rawatds

    Deleting one pattern from a file

    Hi Can I use following code : grep $string filename and then can use sed 's/$string//g' . Please advice rawat
  19. rawatds

    Deleting one pattern from a file

    Hi all i want a unix script which will accept a string from user and then find that pattern in all files present in that path and if pattern finds then remove that pattern the file. e.g Let us suppose the lines in the files are i am going to US i am going to UK UK is...
  20. rawatds

    Transfer from Excel to SQL Server

    Hi all I am importing a Excel file with DTS Packages in SQL Server. There is a column in which the value stored is -0.03. After i import this excel file in SQL server , the data -0.03 is changed to 2.99999 like this . The column in the database where i am putting value -0.03 is Varchar(20) ...

Part and Inventory Search

Back
Top