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

    Processing outer join by oracle

    I have a number of tables they have some master/child realtionship i.e they can be joined by related columns. Now I understand I can create outer joins in these tables and should start with a MASTER table and from their keep joining tables to each other including ALL columns that are common...
  2. Rajesh99

    Count distinct on more than one columns

    I have a table like: orderid, custname, zipcode, orderdate. I want to count to do like this: select orderdate, count(distinct custname,zipcode) from a_able group by orderdate. Bu this does not work. I am trying to get for an order how many distinct custname were their in in zip code...
  3. Rajesh99

    insert into and rollback segment

    I have a huge table and I intend to do: insert into another_table select * from big_table; Will this run into can not extend rollback segment error?
  4. Rajesh99

    Materialized view status

    Is there a dictionary view that can give me status of refresh of Materialzed view(i.e, success, error code if failed on error etc)?
  5. Rajesh99

    running sqlplus script from perl

    I have a legacy code and need to run this from perl. I can not use DBI as this needs to fit in legacy. system("sqlplus \/NOLOG <<EOF connect scott\/tiger\@store; select sysdate from dual; exit EOF "); This does not work and keeps prompting me for help on sqlplus. Seems somewhere may be at <<...
  6. Rajesh99

    Typeahead select

    I want to have functionality of typeahead in list box. Any help?
  7. Rajesh99

    Authonticate against Active Directory

    I have my application on Solaris with Tomcat. Now I want to do following things: when this application starts prompt user for his user name/password, if they typed these matching the ones in Active Directory (the users run this application on window XP on company's hosted active directory) then...
  8. Rajesh99

    Plot Chart in excel

    I have data like: 0.01 0.02 0.03 0.23 0.29 .. .. 23.20 This data I have in excel spreadsheet I like to plot that will shows how many data(percent and absolute values) I have in 10 minutes interval( In above I have in first 10 minutes 3 transactions, in next 10 minutes 0 transactions and in...
  9. Rajesh99

    Tab page event

    I want to processs some code when tab page is selected. I used 'On Click' event that seems to work fine if I click in the middle of tab page. But users will click on the little thumb nail to select a tab and this event does not seem to fir at that time. What other things can I do to accomplish...
  10. Rajesh99

    Special report

    I have a tabular report in which every field comes from a table except one that comes from a detail table. How can I create this report. It should look like: cust_id cust_name productid(s) 1 John 100,101,102 .. productid(s) are from detail table. Any clues?
  11. Rajesh99

    Clicking all check boxes programtically

    I have a table with check box against each row of data. I want to provide a global check box[check all] on top which if clicked should check all check boxes on the form. I do not find any method to that. Any ideas, what method of check box I call? Thanks
  12. Rajesh99

    Casting in Access sql

    I have a query: select 'True' as print_flag, cust_id from cust; How do I cast print_flag to cast to Boolean(true/false or yes/no)? Seems this comes up as text when I base my form on this query.
  13. Rajesh99

    Selecting row using chekbox in a tabular form

    I want to add a check box to each row of a table. This table is a straight dump of data from a table. What I am trying to do is provide user a way to chose(print or do something else) for the row checked. How do I do this? I created a tabular object usning wizzrad and then added manually a check...
  14. Rajesh99

    Reporting solution in java

    I have a Oracle 9i database and I want to generate 10/15 reports in pdf that users can view and print thru IE browser. Really not interested to buy a tool like crystal or oracle report writer etc. Are there some freeware I can use in my JSP code to do this. I just picked up pdf since Acrobat...
  15. Rajesh99

    How to run crystal report against paramtere or noparam

    I create a report passing parameter. That works fine. Problem is that users may not even pass parameter every time when they run this report, likemthey want to see all results. So Itry codeing where clause like: cust_id = NVL(?cust_param,cust_id) NVL is an oracle function that says if...
  16. Rajesh99

    Need advise on Crystal report configuration

    I have couple of reports done using crystal report 10. I want to put them on web. My front end is JSP and I have a Tomcat server. What other pieces I need to install to make this work. JSP page really passes ULR alnog with arguments and them report works. I tested report in client server that...
  17. Rajesh99

    Changing where clause dynamically in crystal report

    I am new to crystal report. I have some old reports done in Oracle report, I am trying to convert them to CR. I pass some parameters form JSP page. The user may pass any of the five parameters and the report should print data based on parameters passed. In oracle report I can change where...
  18. Rajesh99

    Invalid number error

    I run this query in access pointing to Oracle SELECT CInt(Right(Trim(mse_name),4)) FROM db_own WHERE ((Left([mse_name],4))='DB19') and len(trim(mse_name)) = 8 and CInt(Right(Trim(mse_name),4)) > 70 I get Invalid Number error. It is the where 'CInt(Right(Trim(mse_name),4)) > 70' giving...
  19. Rajesh99

    Migration database to Oracle and errors in forms

    I migrated an sqlany db to Oracle and now after linking all forms in access application when I run it I get many errors. Most commons are recordsetclone error, invalid number, invalid expression. I am using common data types like integer, char etc. I will think after I link all forms correctly...

Part and Inventory Search

Back
Top