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 TouchToneTommy 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: PatelRam
  • Content: Threads
  • Order by date
  1. PatelRam

    Query -SQL

    Hello, I have a table which contains following data. TableA: ColumnA ColumnB A1 C1 A1 C2 A2 C3 A2 C4 I need to build query which give me follwing output : A1 C1:C2 A2 C3:C4 Can someone help me out. Thanks, Ram
  2. PatelRam

    SQL Query

    Hello, I have a table which contains following data. TableA: ColumnA ColumnB A1 C1 A1 C2 A2 C3 A2 C4 I need to build query which give me follwing output : A1 C1:C2 A2 C3:C4 Can someone help me out. Thanks, Ram
  3. PatelRam

    SQL Query

    Hello, I have a table which contains following data. TableA: ColumnA ColumnB A1 C1 A1 C2 A2 C3 A2 C4 I need to build query which give me follwing output : A1 C1:C2 A2 C3:C4 Can someone help me out. Thanks, Ram
  4. PatelRam

    Datastage

    Hi, I have a following sample source file. How do I extract data as target table as shown format. I will appreciate if some one help me in this. Source File: Customer: 111 Product code Product Description Amount A123 ABC 100.00 B123...
  5. PatelRam

    Update Statement in db2

    Friends, table A Product_id Product_Category PRICE 1 A 10 2 A 2 3 A 3 4 B 23 5 C 12 6 D 56 7 A 23 8 A 23 9 C 34 10 D 67 table B Product_id Product_Category PRICE Expected Result for Price 1 A 0 10 2 A 0 2 3 A 0 3 4 B 0 5 C 0 6 D 0...
  6. PatelRam

    Previous month First and Last Day

    Friends...!!! How do I find Previous month's first and last day from current date. Thanks, Ram
  7. PatelRam

    lenght of Numeric field

    How do I find lenght of Numeric field in db2...??? For eg. Amount Length (Expected Result) -10202.343 10 19192222.44 11 -292.392 8 Thanks in advance Ram
  8. PatelRam

    like operator

    Hi, I am new to datastage. I have following two simple question 1) How do I use not like function in datastage for eg. DB2: table_name.column_name1 not like '%AB%' datastage: ?? Thanks Ram
  9. PatelRam

    rownum in db2

    What is equivalent of Oracle rownum in db2 ? for eg. Create tabe dept ( deptno number(8) deptname char(10) loc char(10) seq_no nummber(8) ) insert into dept(deptno,deptname,loc,seq_no) select dept_no, deptname, loc...
  10. PatelRam

    Last monday's date

    Hi, How can I write a select statement that will retrieve last monday's date without knowing what today's date is? I know that if today where monday and I wanted to know last monday's date, I could just subtract 7 from today's date. If today were Tuesday, I could subtract 8 and so forth. But is...
  11. PatelRam

    date format

    Hi, SQL : Select MAX( business_start ) AS business_start from calendar output : 2004-09-01 I need date in 'Sep 01,2004' format in db2. How do I modify above sql to get me this result Thanks in advance.
  12. PatelRam

    db2 date

    Hi, How do I write following code in db2. select to_char(calendar.business_start ,'Mon DD,YYYY') AS mtd_bgn_date from dual Thanks,
  13. PatelRam

    DB2 LEFT OUTER JOIN

    Help needed in Left Outer Join in Db2 ===================================== Hi, I am migrating Oracle SQL queries to Db2 queries. How do I write following Left outer join in db2. 1) Oracle : ======== Select T1.COL1, T2.COL1, SUM(T2.COL2) FROM T1, ( SELECT MAX(DAY) FROM...
  14. PatelRam

    Advantage of using Crystal Report vs Business Objects

    Hi, I have been told by my manager to find out advantage of using Crystal Report vs Business Objects. Could you tell me couple of major advantage of using Crystal Reports vs Business Objects. Thanks,
  15. PatelRam

    Set Oprator in Ms-Access

    What is equivalent of Minus Operator (Oracle) in Ms-Access ??
  16. PatelRam

    Oracle's Decode Functionality in Ms Acess

    How to get the Oracle's Decode Functionality in MS Access ?
  17. PatelRam

    Null function

    Hi, what is Null function in Ms-access ? Oracle : select nvl(comm,0) from employee; Ms-Access : ?? Thanks, Ram
  18. PatelRam

    Searching Field Name in Database

    I have one string data for eg "ABCDE". I want research which table's field in database has this value. how do i do it ? thanks,
  19. PatelRam

    Serching Field Name in database

    I have one string data for eg "ABCDE". I want research which table's field in database has this value. How do i do it ? thanks,
  20. PatelRam

    Repeat Group header on Each Page

    I am using Crystal 8.5 for my report. I have two group in my report. Group 1 :Country Group 2 :City Details : Rep_Name & Sales Amounts Reports Ouput Country= USA Boston Adam 2300 Scott 3000 New York Paul 300 I want to repeat...

Part and Inventory Search

Back
Top