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

    PowerPoint: Inserting Excel Grpahs

    I am trying to insert a graph from Excel into powerpoint. I do not want to insert the object. I need to insert the graph as a picture. So when I copy the graph from excel and then insert it (paste special->pitcure) into a powerpoint slide, the picture is insert as grayscale. I lose the...
  2. DCCoolBreeze

    awk! Did they forget the H? How can I make it do...

    OK. I have never used awk so please be patient. I want to extract some data from 300+ files. The files are in the same format. I need to extract parts of lines within each file. The two lines I need to extract data from are listed below: "Starting Processing on Sat Feb 1 19:00:41 EST...
  3. DCCoolBreeze

    Execute an SQL command in procedure

    OK. I want to truncate a table given a specific set of criteria has been met. How can I do this in the following example: declare criteria1 varchar2(1) := 'N'; begin criteria1 := 'Y'; if (criteria1 = 'Y') then exec sql truncate table table1; (does not work) commit...
  4. DCCoolBreeze

    DROP a column

    How can I drop a column from a table? I tried ALTER TABLE table_name DROP COLUMN( field_name ); and got an error of "Invalid Column Name"
  5. DCCoolBreeze

    General Wireless LAN Question

    OK. Why can I not browse the computers (or even see) on my network when I use the wireless connection on my router? I can browse when I connect through one of the RJ-45 ports.
  6. DCCoolBreeze

    How do I exit GNOME???

    I need to do some work outside of x-windows. I am using GNOME. How can I exit out of GNOME (x-windows). I have tried ctl-atl-backspace...it just takes me back to GNOME
  7. DCCoolBreeze

    Windows Update Problem

    I am having a using Windows Update. Today I rebuilt my machine. Once I got WindowsXP loaded, I wanted to update it with the latest software. I tried several different patches/updates in Windows Update but I get the same message each time "No Updates Were Installed". I have followed...
  8. DCCoolBreeze

    BULK COLLECT, DBLINK and 8i

    I understand that I cannot use the bulk collect with a dblink under 8i so I was told to use cast(multiset... I do not completely understand how to make it work so I am including the code I need to replace with cast(multiset... DECLARE type x_tab is table of ap_invoices_all.invoice_num%type...
  9. DCCoolBreeze

    How can I modify a shape on a Stencil???

    OK. This seems like it is a straight forward question. I hope it is but this is my problem. I have copied the milestone (diamond) master shape to a new master in Timeline Shapes (US Units). I want to maintain everything about the original shape except I want to move the text box and the...
  10. DCCoolBreeze

    calculate difference in two times

    I need to calculate the difference between two dates and times. The DateDif works for dates but what about times?
  11. DCCoolBreeze

    Linux/Oracle 8i Client

    Does anyone know what I need to do to be able to load the Oracle 8i Client on Redhat Linux? First, where do I get the client software-I can get the full blown Oracle DB but I do not want that-and then what do I do to install it.
  12. DCCoolBreeze

    mailx and attachments?

    Is there a way to send attachments via mailx? I am currently using the command line. uuencode foo foo | mailx -s 'subject' receiptient this embeds the message into the body of the email; however, I need to send two separate files in the same email message using mailx
  13. DCCoolBreeze

    SQL variable definition question

    I want to be able to define a variable that will hold the resultant value from an expression. For example define l_start_date = LAST_DAY(ADD_MONTHS(SYSDATE,-1)) l_start_date needs to have the resulting date calculated by the expression.
  14. DCCoolBreeze

    Developer 6i Runtime

    Where can I find developer 6i Forms/Reports runtimes
  15. DCCoolBreeze

    Oracle Designer 6i -> Oracle 9i Web

    I am new to Oracle forms/Reports. I have taken over some Oracle forms and reports that were developed in Designer 6i. They are client/server format I want to upgrade them to Oracle 9i and use them on the Web. What do I have to have on the web server to accomodate 9i web forms/reports and...
  16. DCCoolBreeze

    New to Tomcat and Apache

    OK. I am a complete green (redundant) newbie. Can someone tell me what tomcat is and what it does versus apache?
  17. DCCoolBreeze

    Forms 6i and Updateable Views???

    OK. Here is a problem. I have two views. One Main and one Detail similar to tables that are Main and detail (I have to use a union all to combine two main tables and two details tables)...anyway, I have created two data blocks (1) main and (2) detail. I have changed on-lock, on-update and...
  18. DCCoolBreeze

    Where is the current record drill-down control????

    I am using designer 6i. I want to create a "current record drill-down" item for my detail record section. I have documentation that tells me to create an unbound item, change it's display property to display = true and then select display type as Drill-Down Current record. The...
  19. DCCoolBreeze

    ORACLE Reports: how do I dynamically change a text field

    all i want to do is change the report's title dynamically depending on the paramter list. For example let's say that i initiate a report by placing the parameter xyz into parameter field 1. i then want the report title to say abc (NOT XYZ) or if i enter www then i want to make the title state...
  20. DCCoolBreeze

    UPDATE - Multiple table problem

    OK. Can this be done. Let's say we have two tables. A main table (main) and a detail table (detail). They are connected via ID field. Now I want to update some records in the detail table. These records (recordset) is derived from information in the main table. For example: MAIN ID...

Part and Inventory Search

Back
Top