Out of the queue of SQL * Plus for Excel

I'm out of the queue of SQL * Plus for Excel. The code I use is down. I want that all white space to carve when I open the updated file waiting in Excel. How can I ensure this?

I was reading on the SET TRIM command, but it says that it does not affect the output queued. (http://ss64.com/ora/syntax-sqlplus-set.html)

Is there a way to NOT display whitespace at the beginning and the end of a column in SQL * more? In other words, if I shoot a single column of a record, and a data element is only 3 characters in length, I want to be also 3 characters instead of extending over 40 characters across the width of the column.


The column for your troubleshooting information
IDNUMBER is NUMBER (12)
FIRST is VARCHAR2 (40)
The LAST is VARCHAR2 (60)


Code
SET LINESIZE 100
SET PAGESIZE 0
SET MARKUP HTML PREFORMAT ON
set colsep,
coil c:\prospects.csv
Select '' perspective ID"', '" First"',""finally" "from dual;
Select to_char (p.idnumber), p.first, prospect_view p.last p where idnumber = 164515;
spool off

DataHandle wrote:
I'm out of the queue of SQL * Plus for Excel. The code I use is down. I want that all white space to carve when I open the updated file waiting in Excel. How can I ensure this?

I was reading on the SET TRIM command, but it says that it does not affect the output queued. (http://ss64.com/ora/syntax-sqlplus-set.html)

TRIM affects the expressions in your SELECT clause. It has nothing to do with the padding of SQL * Plus adds to align the columns upwards.

Is there a way to NOT display whitespace at the beginning and the end of a column in SQL * more? In other words, if I shoot a single column of a record, and a data element is only 3 characters in length, I want to be also 3 characters instead of extending over 40 characters across the width of the column.

Here's a way to make the main request:

SELECT        TO_CHAR (idnumber)
|| ',' ||  first
|| ',' ||  last
FROM           prospect_view
WHERE        idnumber     = 164515
;

This will include spaces only if they occur in first or last. Depending on your data and your requriements, you may need to use the FILLING (first) instead of the first, and/or TRIM (finally) instead of the last.

Using this technique, it does not matter what is COLSEP: the query produces a single column.

Use the SQL * more order

SET  TRIMSPOOL ON

to keep SQL * more add space after this single column.

Tags: Database

Similar Questions

  • IPCC Express, option for the appellants out of the queue and leave a message.

    We are running 4.0 (5) IPCC Express improved. I need to configure our current ICD script so that when the appellants are held in the queue, they can press 0, out of the queue and leave a voice message. The ICD script we use is an exact copy of the script icd.aef by default on the system, it has just been copied and renamed. My question is, what are the steps I need to use the script to enable this feature?

    Two options. Option 1: Use the IPCC completely to save messages and manage messages as you seem to did so. Option 2: Transfer the caller to your voicemail number pilot and use your voice mail system to record the message.

    Steps to Option 1:

    1 early on in the script, use the step to read the Contact information call to capture the called number and save it as a variable.

    2. use the step to get a string to allow the caller to press 0 to leave a message. On the Filter tab, allow only the key 0 be hurry.

    3. in the leg successful step to get a string of digits, add the following steps.

    a. contact Dequeue step.

    b. reading quick step that contains a prompt that asks the caller to record a message after the tone.

    c. step recording, which records the message saved in a Variable of type "Invite".

    d. use the Terminate step to end communication with the appellant (you can add a quick step before that game if you want to tell the caller that the message has been saved).

    e. at this point, you can either use writing document step to record voice messages in a folder on the server of the IPCC, or you can use a series of other steps to place a call to the queue and play the message the following agent that meets, or you can attach it to an email and send it it make the address email of your choice (or a combination).

    I have this HUGE warning. I had several problems with what I've been able to overcome, but it requires a bit of diligence.

    -L' registration step requires a termination character (# or *). If the caller hangs just straight up, the script returns an exception and drop dead. You can manage the 'contactinactiveexception' using a step on the Exception and have it go to a label that you can put it as the first step under the leg successful registration step. In this way, if the user hangs up, the script handles the exception by going directly to the successful step. You can clear the exception just after that.

    -You will also want to handle this exception before Terminate step. If the caller hangs up and you try to put an end to this contact when he is no longer active, the script will always die, and the remaining steps will not run.

    We use the option to place a call in the queue. In itself, this requires a lot of thinking to make sure that the script is not die when an exception occurs. I ended up putting some exceptions in place where if there is a problem and that the recorded message never makes it to an agent, a log file is stored on the server as well as messages stored in a .wav file. Then, an email is sent to the contractor with these attachments also.

    Thus, it is as effective as make you it. Try to keep things simple at first, and then build on that to improve the experience of the appellants.

    Steps for Option 2:

    1. use the step to get a string to allow the caller to press 0 to leave a message. On the Filter tab, allow only the key 0 be hurry.

    2. in the leg successful step to get a string of digits, add the following steps.

    a. contact Dequeue step.

    b. call no redirection to the number voicemail pilot.

    I have not used this option, so I can't say with certainty how Callmanager will handle this call. The voicemail system will need to see the call as transmitted from a number that has a voice mail on the system account. If this does not work, you can use a dummy CTI Port with a fake extension that is configured to transfer to voicemail, then the voicemail box must be associated with the wrong extension. If you use Cisco Unity, you will also be able to use a routing rule to force the IPCC calls to a particular mailbox. Call the Viewer from the unity tools depot allows you to see the way in which the appeal is made to the unit.

    I hope that helps you and that it is not too verbose.

  • A question on the impact of SQL * PLUS SERVEROUTPUT Optionconcernant v$ sql

    Hello everyone,
    SQL> SELECT * FROM v$version;
    
    BANNER
    ------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0  Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    SQL> 
    
    
    OS : Fedora Core 17 (X86_64) Kernel 3.6.6-1.fc17.x86_64
    I would like to ask a question about SQL * Plus SET SERVEROUTPUT option on / off and its impact on queries on views such as v$ sql and v$ session. This is the problem

    In fact I define three variables in SQL * Plus to store sidcolumns, serial # and prev_sql_id of session $ v in order to be used later, several times in various other queries, while I work always in the current session.

    So, here's how
    SET SERVEROUTPUT ON;  -- I often activate this option as the first line of almost all of my SQL-PL/SQL script files
    
    SET SQLBLANKLINES ON;
    
    VARIABLE mysid NUMBER
    VARIABLE myserial# NUMBER;
    VARIABLE saved_sql_id VARCHAR2(13);
    
    
    -- So first I store sid and serial# for the current session
    BEGIN
        SELECT sid, serial# INTO :mysid, :myserial#
        FROM v$session
        WHERE audsid = SYS_CONTEXT('UserEnv', 'SessionId');
    END;
    /
    
    
    PL/SQL procedure successfully completed.
    
    
    -- Just check to see the result
    SQL> SELECT :mysid, :myserial# FROM DUAL;
    
        :MYSID :MYSERIAL#
    ---------- ----------
           129   1067
    
    SQL> 
    Now let's say I want to run the following query as the last SQL statement is executed within my current session
    SELECT * FROM employees WHERE salary >= 2800 AND ROWNUM <= 10;
    According to the reference of database Oracle® 11 g Release 2 (11.2) description of session $ v

    http://docs.Oracle.com/CD/E11882_01/server.112/e25513/dynviews_3016.htm#REFRN30223]

    column prev_sql_id includes the sql_id of the last executed sql statement for the sid and serial data which, in the case of my example, it will be the above mentioned query SELECT on the employees table. So right after the SELECT statement on the employees table I have run the following
    BEGIN
        SELECT prev_sql_id INTO :saved_sql_id
        FROM v$session 
        WHERE sid = :mysid AND serial# = :myserial#;
    END;
    /
    
    PL/SQL procedure successfully completed.
    
    SQL> SELECT :saved_sql_id FROM DUAL;
    
    :SAVED_SQL_ID
    --------------------------------
    9babjv8yq8ru3
    
    SQL> 
    The value of sql_id, I'm supposed to find all the information on the sliders for my SELECT statement and also its value sql_text in v$ sql. Here is what I get when I query v$ sql on the stored sql_id
    SELECT child_number, sql_id, sql_text 
    FROM v$sql 
    WHERE sql_id = :saved_sql_id;
    
    
    CHILD_NUMBER   SQL_ID          SQL_TEXT
    ------------  --------------   -------------------------------
    0              9babjv8yq8ru3    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES); END;
    So instead of
    SELECT * FROM employees WHERE salary >= 2800 AND ROWNUM <= 10;
    get the next value for the value of sql_text
    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES);
    Which is of course not what I expected to find in v$ sql for the given sql_id.

    After a little googling, I found the next thread on OTN forum, where it was suggested (well, I think that may not be exactly the same problem) to disable SERVEROUTPUT.

    Problem with dbms_xplan.display_cursor

    It was exactly what I did
    SET SERVEROUTPUT OFF
    After that, I repeated the procedure as a whole and this time everything worked pretty much as expected. I checked SQL * more documentation for SERVEROUTPUT
    and also the page of v$ session, yet I don't find nothing indicating that SERVEROUTPUT should be operated off every time that views such as v$ sql, v $session
    are queired. I don't really understand the link in what concerns the impact that can have on the other or better say rather, why is there an impact

    Could someone kindly do a few details?


    Thanks in advance,

    Kind regards
    Dariyoosh

    >

    and also the page of v$ session, yet I don't find nothing indicating that SERVEROUTPUT should be operated off every time that views such as v$ sql, v $session
    are queired. I don't really understand the link in what concerns the impact that can have on the other or better say rather, why is there an impact

    Hi Dariyoosh,
    SET SERVEROUTPUT ON has the effect of dbms_output.get_lines running after each statement. Not only related to the system view.

    Below is what Tom Kyte is explained in this page:

    Now, sqlplus sees this feature and says "Hey, it wouldn't be nice for me to empty the buffer to the screen for the user? Thus, they added the command SQLPlus "set serveroutput we" which does two things

    (1) he tells SQLPLUS you would like run dbms_output.get_lines after each statement. You would like to make this network rounded up after each call. You want that this additional load will take place (think of a script of installation with hundreds / thousands of statements to run - maybe, just maybe you don't want this extra call after each call)

    (2) SQLPLUS automatically calls the API dbms_output "activate" to activate the buffering which is in the package.

    Kind regards.
    Al

  • convert the access &amp; quot; SQL &amp; quot; for SQL

    Sorry, I know this isn't a problem of DW, but I hope that someone out there who's good with SQL can help me quickly.

    I'm (obviously) not well versed in SQL, but I know that some access methods conform to the real SQL. I can't understand how to recreate a query that works in SQL access, so I can use it just in my Recordset.

    The "Access SQL" is:

    TURN Count (tblData.fldAnswerArray) AS CountOffldAnswerArray
    SELECT 'count' AS Expr1
    OF tblData
    WHERE (((DateValue ([fldTimeStamp])) between January 1, 2006 # and # 30 September 2006))
    GROUP BY "count".
    TblData.fldAnswerArray PIVOT;

    DW Recordset window doesn't like it, however (enter a SELECT statement from a call to a procedure...).

    With my data that looks like this:

    fldRecordID fldUserID fldQuestionID fldAnswerArray fldTimeStamp
    2086 141 134 0 06/09/2006-13:48:43
    750 65 80 1 8/23 / 2006 08:54:03
    2038 136 74 0 05/09/2006 12:51:21

    I'm trying to meet up with a record that shows how many fldAnswerArray are 0 and 1 are based on the provided date range (which will be dynamic).

    For example:

    COUNTIES 0 1 (column heads)
    ------------------------------------------
    Total 29 13 (record resulting)

    Feasible?

    The most compatible SQL, you cannot use PIVOT.
    To get the exact result you described, follow these steps:

    SELECT 'total' AS [account], AS COUNT (fldAnswerArray) - SUM (fldAnswerArray)
    [0], SUM (fldAnswerArray) AS [1]
    OF tblData
    WHERE [fldTimeStamp] BETWEEN ' 2006-01-01' AND ' 2006 - 09 - 30 23:59:59.997'

    There is no point by selecting the word "total" in the recordset object, however.
    You can add to your application. It would also be preferable if you I
    the County and the total sum of responses and answers Yes, then did the subtraction
    client to determine the number of no responses.

  • Need help with the installation of SQL 2005 for my VC 2.5

    Someone can tell me where I can find the instructions for the installation of SQL 2005 and create the DB and connect via ODBC?

    IM assuming that I will first install SQL and then install VC 2.5, correct?

    Hi, take a look at page 21...

    http://www.VMware.com/PDF/vi3_35/esx_3/R35/vi3_35_25_quickstart.PDF

    Dave

  • How to make the output of Sql Plus with an error Code

    Dear members,

    How can I define sql more exit with an error code.

    We have a simultaneous host program. The executable is a shell script for this program. This sql script Shell script request which in turn gives call to a custom database package that I built.

    The flow rate is:


    -> SQL-> CUSTOM PACKAGE SCRIPT SHELL SCRIPT

    Custom package has two PARAMETERS of the error indicator and the error message. If something fails in the package these two PARAMETERS is returned with a value.

    So my sql script code looks like this:

    WHENEVER SQLERROR EXIT 251
    WHEN the OSERROR EXIT 251
    Set serveroutput size 1000000
    set linesize 32767
    set verify off
    set the position
    Set feedback off

    DECLARE
    x_error_message VARCHAR2 (1000);
    x_sql_message VARCHAR2 (1000);
    x_exception EXCEPTION;
    e_value NUMBER;

    BEGIN
    dbms_output.put_line ('Inside sql file');


    XXpackage.xxproc (x_error_message, x_sql_message);


    IF (x_error_message IS NOT NULL) AND (x_sql_message IS NOT NULL) THEN
    RAISE x_exception;
    END IF;


    EXCEPTION
    WHEN X_EXCEPTION THEN
    e_value: = 1;
    DBMS_OUTPUT. Put_line (' Exit Code: ' | e_value);
    DBMS_OUTPUT. Put_line ('X_EXCEPTION: EXCEPTION IN SCRIPT xpoext04a.sql :'||) SQLERRM);
    DBMS_OUTPUT. Put_line ('x_error_message is: ' | x_error_message);
    DBMS_OUTPUT. Put_line ('x_sql_message is: ' | x_sql_message);
    DBMS_OUTPUT. PUT_LINE (' ERROR IS: ' |) SQLERRM);
    WHILE OTHERS THEN
    e_value: = 252;
    DBMS_OUTPUT. Put_line (' Exit Code: ' | e_value);
    DBMS_OUTPUT. Put_line (' OTHER: EXCEPTION IN SCRIPT xpoext04a.sql :'||) SQLERRM);
    DBMS_OUTPUT. Put_line ('x_error_message is: ' | x_error_message);
    DBMS_OUTPUT. Put_line ('x_sql_message is: ' | x_sql_message);
    DBMS_OUTPUT. PUT_LINE (' ERROR IS: ' |) SQLERRM);


    END;
    */*
    output
    */*


    As you can see from above, if the two PARAMETERS have value, then it goes to an exception.

    My problem is that if it goes with the exception of X_EXCEPTION, the sql is not come away with a mistake. I mean sql is not treat this case like a sqlerror.


    How can do us more sql dating a sqlerror so that the host program must fail.


    Thank you
    Sandeep

    Published by: user340 on July 28, 2009 12:51

    Published by: user340 on July 28, 2009 12:57

    the plu sql is not come away with a mistake. I mean sql is not treat this case like a sqlerror.

    This is because there is no error. You handled the exception.

    You can try adding a STIMULUS; at the end of your exception section. This re-triggers the exception so sql liked to see it.

  • Where is the best place to put the code pl/sql only for after the events of the insert?

    Hi, I can not use database triggers, but I need to run pl/sql code only after an insertion.

    I think I need to create a process in the page that inserts into my table, but how do I know if the page is inserting or editing?

    Now I have 3 process: (the tablename parameter is in_incidencias)

    After the execution of

    10 get PK blocked anonymous PL/SQL
    30 process row IN_INCIDENCIAS
    page 40 of reset

    What kind of process that I need to create, and how can I know if there is a new record to insert?

    Thanks in advance

    Do not be sorry, that this forum is for all kinds of developers :) I am fairly new to APEX.

    When you create a process on your page, you choose ' PL/SQL', click 'Next', and then give you it a name, a sequence number and a point of execution (after Submit, generally). You click 'Next' again and then you can code your process. Encode you, click again on "next". Now you have success and failure messages, you can put whatever you want in here. Click 'Next' again, and you finally processing Conditions. Select the button in the field when you press button and're you good to go. If you never want your process to shoot several buttons, and they all have a request, you can also choose the "Request is contained in the Expression 1" Type of Condition and type a comma list of applications in the field of the Expression 1 (something like "CREATE, SAVE", but without the quotation mark).

    With respect to the code of the process itself, I still have to code an email sending process myself, but this thread contains the basics that you need, with useful links to the official documentation.

    Hope this helps,
    Matt

  • The add-on Adblock Plus for Firefox does not work on a Livestream page.

    I just install it because I get a video ad on a web page of Livestream. It does not work.
    Disable all is checked.

    Maybe you can ask the team of Adblock, you're very likely to get the best help there.

  • Currency sign the answer OBIEE and download for excel

    Hello

    When I put the currency symbol on an OBIEE answer and if I press "Download to Excel" on outcomes, the exported table is downloaded perfectly but if I try to perform and calculation on this ground I get an error message and I get out the currency sign for more of this. For example, if I try to make the sum of the column of numbers with the symbol € in excel, it will not work.

    Is there a way to get around this please? Sorry I could not find this application prebiously issue in OBIEE forum

    Concerning
    Hilary

    Published by: 811311 on June 29, 2011 05:21

    Hi hilary,

    I think I just need to put the symbol in the header and out lines resulting.

    You are going in the right direction, make sure that header if symbol end users would understand that it denotes this currency.

    See you soon,.
    KK

  • Clears the queue of the printer.

    My default printer is in the form of 'holding company '.  I tried to delete the print queue by clicking on cancel all and the message I got was that they system was DELETE which has been blocked in the queue.  After waiting all night and check this morning, the document was still DELETE.

    When you try to cancel the document, the system will not recognize the prompt to cancel.   It remains just delete.

    Am very frustrated and don't know what to do.  The printer will work fine if I could get this paged document 2 out of the queue.

    Thanks for any help.  Am at my wits end.  Too much time and effort has been wasted for a quick question.

    RJ

    RJ

    My default printer is in the form of 'holding company '.  I tried to delete the print queue by clicking on cancel all and the message I got was that they system was DELETE which has been blocked in the queue.  After waiting all night and check this morning, the document was still DELETE.

    When you try to cancel the document, the system will not recognize the prompt to cancel.   It remains just delete.

    Am very frustrated and don't know what to do.  The printer will work fine if I could get this paged document 2 out of the queue.

    Thanks for any help.  Am at my wits end.  Too much time and effort has been wasted for a quick question.

    RJ

    RJ

    If you cannot cancel or delete queues priting then try to complete treat it via Control Panel then try the following:

    Unplug the printer from your pc and then try unistalling the software driver through Control Panel and then add/remove programs or Device Manager. then try to install it back again by connection with the printer or by using the manufacturer's cd! Make sure your windows is uptodate.

    If for some reason any installation failed or could not print check again then your printer for ink and paper, see if all are available and there is no flashing light.

    try turning off the printer, then turn on see if that helps.

    Check the Web site of the manufacturer for the software driver troubleshooting guide and more!

  • Queue in sql developer does not take into account the VALUE ECHO OFF

    I am a developer SQL 3.1.07.42 Windows 7 64 bit with java 1.7

    I have the following script very simple just to show the problem:
    SET ECHO OFF;
    SET FEEDBACK OFF;
    SET SERVEROUTPUT ON;
    SET VERIFY OFF;
    SET PAGES 0;
    SET HEAD OFF;
    
    SPOOL c:\test.sql
    SELECT 1, 2, 3 FROM DUAL;
    SPOOL OFF;
    /
    If I run into a FROG 10.6.0.42 it creates the file with
             1          2          3
    This is as expected (by me)
    If I run the same exact query in SQL Developer 3.1.07.42, it creates the file with:
    < SELECT 1, 2, 3 FROM DUAL
    1 2 3
    (the < above is actually ">" but software formatting CODE is screwing ' > ')
    but I don't want the ECHOed command to be wound. For the life of me, I can't find a way to turn off the ECHO of the queue in sql developer.
    Tried the same thing in 3.0.4 and 2.1.1 with the same (bad) result (more a few warning on some unsupported SET commands).

    Am I missing something obvious? Cause like that, control of the coil cannot be used in sql developer to generate a CSV file, for example, due to the echo command. And windows does not come with default SED so it's on. (more than my original script is integrated into a whole much broader and complex scripts and the main script, their use is run from Developer SQL as a company policy (so that everyone uses the same tool and the code runs the same for everyone))

    Any ideas/suggestions are welcome
    Thank you.

    Hello

    If you save your code

    SET ECHO OFF;
    SET FEEDBACK OFF;
    SET SERVEROUTPUT ON;
    SET VERIFY OFF;
    SET PAGES 0;
    SET HEAD OFF;
    
    SPOOL c:\testscript.log
    SELECT 1, 2, 3 FROM DUAL;
    SPOOL OFF;
    

    as a script, say C:\testscript.sql, then run from a worksheet like

    @\testscript.sql

    the output in C:\testscript.log will be

    1 2 3

    Kind regards
    Gary
    SQL development team

  • Where can I find the procedure step by step for SQL DB in vCenter

    I need to create the SQL DB for vCenter in the SQL server itself, but I can't find good instructions specifying the instructions step by step in SQL.

    Hello

    This link can help to understand on the installation of SQL DB for vCenter

    http://lonesysadmin.NET/2011/10/06/how-to-install-Microsoft-SQL-Server-2008-R2-for-VMware-vCenter-5/

  • Cannot remove the document from the queue

    I deleted a print job, but I can't get out of the queue. I can't print anything now. How can I get rid of this document so I can use my printer?

    To clear the print queue, stop the print spooler service and delete all the pending print files.
        
    You cannot delete all print jobs in the queue so that the Print Spooler Service is running.
           
    To stop the Print Spooler Service, click Start, run and enter in the box:
            
    services.msc
            
    Click OK to open the Services Applet.
            
    Locate the Print Spooler Service, right click and choose 'Properties' and then click on the "Stop" button to stop the Print Spooler Service is running.
        
    The option "Startup Type" of Service properties print spooler is usually set to "Automatic" (which is now a good time to check it out).
        
    If the "Startup type" is not set to "Automatic", set the "Startup type" to "Automatic" If that is your desire (which now is the time to check it out).

    Do not try to start or restart the Print Spooler Service again...
        
    Then, delete all updates pending upward and forward to printing from XP.  If they do not print before, you will need to send the to the printer again.
        
    Using Windows Explorer, navigate to the following folder (assuming that Windows is installed on your C drive):
        
    C:\WINDOWS\system32\spool\PRINTERS
            
    Delete all the print jobs in queue (select and delete all the files) in the folder if the folder is without waiting for print jobs.  The folder must be empty when you are finished.
            
    Reboot your system and check the Print Spooler Service again to make sure the Print Spooler Service restarts automatically restart (given that the startup type is set to automatic).
        
    After the reboot, check again the spooler service for printing and the 'Status' column for the print spooler must be read "started."

    Submit new failure of print jobs.

  • Photosmart 6520: Cannot delete the queue of print 6520/Mac OS 10

    I have accidengally loaded a bunch of pictures in the queue for the printer.  I don't know how to delete it.  I've never had the need to do this before with this computer & printer.  I can not print anything else, until I get out them.

    When the printer starts print I press the little red X to cancel.  Cancels, it then goes to the next.  When I have a clear, that one out of the queue?

    Hey @SandraPDX,

    Welcome to the Forums of HP Support!

    I see that you have some problems with some print jobs stuck in your queue on your computer Mac OSX 10.11. I can help you with that.

    To start, make sure that the printer is plugged directly into a wall outlet, not a surge protector. Once done:

    1. If your printer is connected to your Mac via a USB cable, remove it.
    2. Close any programs you have open.
    3. Click on your Apple icon, system preferences and printers and Scanners.
    4. Hold down the CTRL key and click the icon of your printer on the left.
    5. Click on reset printing system.

    Now, if you removed the USB cable, plug it. Otherwise:

    1. Click the more in the lower left corner.
    2. Select your printer from the list.
    3. Click the check box next to and select your printer from the list.
    4. Click on Add.

    Please let me know the results after following the above. If you have disabled the queue, click on accept solution. If you appreciate my help, please click on the thumbs up icon. The two icons are below this post.

  • Can I install SQL Plus in a client PC?

    Dear friends,

    I'm working on a PC that accesses the database using PL/SQL Developer and command-line SQLPLUS (instant client). I would like to download SQL PLUS as well. Is there a way? I've seen some way PC but don't know how to do it.

    Could someone guide me.

    Thanks in advance.

    Looking for your support.

    Benard

    My apologies. I did not yet installing Oracle11g customer and assumed it was the same as Oracle 10g. My bad. During the initial examination, I could not find the SQL * Plus for Windows (sqlplusw.exe) in the Oracle11g Client installation or the other.

    Could always try installing with Oracle10g customer or Oracle10g Express Edition.

    Had heard some comments awhile back that SQL * Plus for Windows would disappear at some point, but do not think that was going to be to 11g of product.

    Published by: J.A.Hill on May 27, 2009 13:51

Maybe you are looking for

  • Difference between "Download clear ' and ' clear list?

    I clicked on the arrow down which is the icon for downloads. I right click on a file you downloaded and I saw an option 'clear list'. Another time, I clicked on 'Show all downloads', then on the top of the screen it displays a tab mentioning "clearly

  • Deadly blue screen (professional assistance)

    Hi, I have a CQ60-116EE with P/N FY419EA #ABV and I have collected all the Xp drivers successfully, but before I started the downgrade to xp I did a stupid thing by upgrading the Bios of A F.25 to F.32 Then I started from the xp CD, but I got a white

  • Internet connection via Wi - Fi on MacBook Pro

    I had problems with my MBP WiFi since I got it. I tried to follow the suggestions here:http://osxdaily.com/2014/10/25/fix-wi-fi-problems-os-x-yosemite/with no luck. My internet connection will not go away, but I will be always connected to Wi - Fi. R

  • no noise at all have done everything I can back it as a code 10

    I did everything what they tell you to windows xp but it comes back as code 10 thanks

  • Downgrade Win 7

    Hello. My new laptop HP 15 - G006sl came with Win 8.1. I reinstalled with Win 7 Home Premium x 64. But I can't find the drivers for the chipset, Lan Wireless... Where can I find all of this, please? Thank you. Silvia