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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bcdixit

  1. bcdixit

    copy paste contents of a excel worksheet into outlook email body

    I am automating the process and want to send out the email sheet at a particular time of the day... so doing this manually is not efficient and does not meet the need
  2. bcdixit

    copy paste contents of a excel worksheet into outlook email body

    Hi, I am new to vbscript. I wanted to copy contents of a excel sheet into the body of any email. Is there a way to do it. I know how to attach the excel file but wanted to copy some contents inside the excel worksheet directly into the email body. the reason being, very few people open the...
  3. bcdixit

    regex question : ignoring first match in pattern search

    I have the following piece of code, #!/usr/bin/perl $txt = "xxx yys"; $txt =~ s/\b/\!/g; print "$txt\n"; basically I want to substitute at a word boundary a '!' character but not on the first word of the string or line. the output that I am currently getting is !xxx! !yys! I want it to...
  4. bcdixit

    left join with unique rows from joined table?

    i work on teradata primarily.. 'select' can be written as 'sel' (teradata extension)....thanks for pointing that out r937. i should have changed sel to select in the forum
  5. bcdixit

    left join with unique rows from joined table?

    clone, the ouptut that you have given doesnot include all Dogs . Fluffy is missing from the output. well anyway i guess here is another way of doing it..any little more complex but I dont know if this works on SQL server or MySQL. sel z.name, m.notes,m.date_id from bi_stg_8.t1 z left outer...
  6. bcdixit

    left join with unique rows from joined table?

    r937 is correct. co-related sub query is what it is called.
  7. bcdixit

    getting distinct values of a column in a partition query

    joedsilva, this is exactly what i wanted!!! awesome!..thanks a ton. -bd
  8. bcdixit

    getting distinct values of a column in a partition query

    I have a data set that looks something like this in a table storeID DealerCD DealerName DealerPermit ------- -------- ---------- ---------- 1111 980038 John PAC 1111 980041 Bill NAC 1111 980041...
  9. bcdixit

    finding distinct values in a partition query

    Thanks JarlH, the query works on other databases but unfortunately this doesnot work on Teradata. sorry should have mentioned that earlier.
  10. bcdixit

    finding distinct values in a partition query

    I have a data set that looks something like this in a table storeID DealerCD DealerName DealerPermit ------- -------- ---------- ---------- 1111 980038 John PAC 1111 980041 Bill NAC 1111 980041...
  11. bcdixit

    Informatica power center: import control file

    Hi, I want to write a script to import mappings and session automatically. I understand that this can be done using pmrep and the ObjectImport Method. What i am missing is the import control file. can someone please let me know if I can find a sample of it somewhere? thanks
  12. bcdixit

    listening to a process in Perl.

    sorry , I did not mention this earlier but this is on unix.
  13. bcdixit

    listening to a process in Perl.

    Hello, I have a perl script in which i need run some other perl script. The way I am doing this is through the system command i.e. something like this. while(<read script names from a file>) { system("$script"); } now, what I want to do is on the screen (STDOUT), I want to display something...
  14. bcdixit

    read a line from a file and writing to the same line in the file

    I checked Millers Link.. sorry but can you help me understand what is the "inplace editor"?
  15. bcdixit

    read a line from a file and writing to the same line in the file

    still the same error after ishnids comments. I don't think this module is availalle on the box....and its a pain in the axx to get the sysadmin to compile it.

Part and Inventory Search

Back
Top