How to run sqlplus from the server

Hello

I have 11g installed on a Linux server by someone.
Could you please help me know...
-How to create a development in there environment?
-How to start SQLPlus not my local machine, but directly by the server?
-How to run any .sql decompressed in the server files?

For your information, I don't know anything on the server and database.

Thank you
Guy

Link: Apex 3.1.1 installation / upgrade can help you.

Tags: Database

Similar Questions

  • How to run commands from the Terminal from the Finder?

    I would ask a series of Terminal commands in a file, then run the commands by double-clicking on the file in the Finder.  I found a number of sources on how to do on the internet, but most include comments from other users by saying: "this has not worked for me.  I have not found a definitive 'it's how

    I created a test file, use TextEdit, named test.commandand saved to my desktop.  The file contains these commands:

    ! / bin/sh

    chmod + x ~/Desktop/test.command

    echo 'Hi. ' here

    echo 'Hi' once again

    When I double-click the file, however, it sometimes just opened in the Finder.  Other times, I get an error message saying I don't have permission to run the file.  I thought that the chmod command was to manage the authorization, but maybe I'm not using it correctly.

    Can anyone help?

    #! / bin/sh

    You must # follow-up by the! as the very first 2 characters of the file.

    And as bash is the default shell, you should probably actually tell

    #! / bin/bash

    The chmod + x command should be performed after you have created the file test.command, not inside her.

    Another way to run shell commands is via Automator-> run the Shell Script

    Automator has no need to open a Terminal Services session to process orders.  But if you want to have the command display something, it might be simpler to use a .command file, although there are ways to view things in an Automator app as well.

  • How to remove attachments to email from the server

    Hello
    I created a CF model for sending electronic mail that includes attachments. It has been tested on my dev machine and works fine as long as the download of attachments to a directory on the server. I wish that the spare part to be served once as the e-mail message has been sent to the recipient.

    Macromedia ColdFuision 7MX web application construction book page 913 "interacting with Email" we a CFC that will remove the file when the user ends their session.

    I don't know how to write it to adapt the code that I use.

    Here's the e-mail form

    <! - Mail_Form.cfm - >
    < html >
    < head >
    < title > please enter your message < /title >
    < / head >

    < body >
    < do action = "Send_Email.cfm" method = "post" enctype = "multipart/form-data" > "
    < table width = '500' border = "0" align = "center" >
    < b >
    < td width = "500" colspan = "2" > please enter your e-mail address: < table >
    < /tr >
    < b >
    < td width = "250" > to: < table >
    < td width = "250" > < input type = "text" name = "to_addr" value = "" > < table >
    < /tr >
    < b >
    < td > subject: < table >
    < td > < input type = "text" name = "subject" value = "" > < table >
    < /tr >
    < b >
    < Td > message: < table >
    < td > < input name = "message" rows text box = "5" cols = "35" > < / textarea > < table >
    < /tr >
    < b >
    < td width = "250" > annex #1: < table >
    < td width = "250" > < input type = "file" name = "attachment_1" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > #2 Attachment: < table >
    < td width = "250" > < input type = "file" name = "attachment_2" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > #3 Attachment: < table >
    < td width = "250" > < input type = "file" name = "attachment_3" value = "" > < table >
    < /tr >
    < b >
    < td width = "250" > < table >
    < td width = "250" > < input type = "submit" name = 'Send_Email' value = "SendEmail" > < table >
    < /tr >
    < /table >
    < / make >

    Here is the form to send the attachment.

    <! - Send_Email.cfm - >
    <!-first of all, make sure that the attachments downloaded the user->
    < cfif FORM.attachment_1 NEQ "" > "".
    <!-firstly actually-> download file
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_1."
    nameconflict = "makeunique" >
    <! - now create a temporary support for the attachment then - >
    < cfset attachment_local_file_1 = "d:\uploadsTEST\#file.serverfile#" >
    < / cfif >

    <!-now repeat the process for the setting of the second and third: - >

    < cfif FORM.attachment_2 NEQ "" > "".
    <!-firstly actually-> download file
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_2."
    nameconflict = "makeunique" >
    <! - now create a temporary support for the attachment then - >
    < cfset attachment_local_file_2 = "d\uploadsTEST\#file.serverfile#" >
    < / cfif >

    < cfif FORM.attachment_3 NEQ "" > "".
    <!--forst actually download the file - >
    < cffile action = "upload".
    destination = "D:\uploadsTEST\".
    FileField = "attachment_3."
    nameconflict = "makeunique" >
    <!-now to create a temporary support for late fixing on->
    < cfset attachment_local_file_3 = "d:\uploadsTEST\#file.serverfile#" >
    < / cfif >

    <!-OK, now you have downloaded the file from the server, now we will send
    email with attachments: - >

    "< intrusion via cfmail to =" #form.to_addr # "[email protected]" = "subject =" #subject #
    Server = "an001so - dby1c.pbi.global.pvt" port = "25" >
    #message #.

    < cfsilent >
    <!-< cfsilent > tag used to kill the white space in this area
    If your email is not cluttered with white spaces-->

    < cfif FORM.attachment_1 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_1 #" >
    < / cfif >
    < cfif FORM.attachment_2 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_2 #" >
    < / cfif >
    < cfif FORM.attachment_3 NEQ "" > "".
    < cfmailparam file = "#attachment_local_file_3 #" >
    < / cfif >

    < / cfsilent >
    < / intrusion via cfmail >

    Here's the session request to delete the file to download

    <!--
    File name: Application.cfc
    Runs for each page request
    ->

    < cfproperty output = "false" >

    <!-name of the application. ->
    < cfset this.name = "attachmentPurge" >
    <!-enable session management. ->
    < cfset this.sessionManagement = true >
    < cfset this.clientMangment = true >

    < name cffunction output = 'onSessionEnd' = "false" returnType = "Cancel" >
    <!--> look for attachments to remove

    < cfset var attachDir = expandPath ("Attach") >
    < cfset = var getFiles "" > "".
    < cfset var thisFile = "" > "".

    <! - get a list of all files in the directory - >
    < cfdirectory directory = "" #attachDir # "name ="getFiles">"

    <! - for each file in the directory - >
    < cfloop query = "getFiles" >
    <!-if it's a file (rather than a directory)-->
    < cfif getFiles.type NEQ "Dir" >
    <! - get the full name of this file - >
    < cfset thisFile = expandPath("Attach\#getFiles.Name#") >
    < / cfif >
    < / cfloop >

    < / cffunction >

    < / cfproperty >

    The tutorial doesn't explain how to delete the attachment when the recipient audits post
    in the pop server.

    Assuming that the sender is in a session would be writing code to remove the attachment from the directory on
    the server, a message is sent.

    Can someone explain how to remove attachments from a designated directory or provide me the code that would deal with that once an email is sent with an attachment automatically.



    Thank you

    Tony

    That's how I do it.



    ThisDir = "d:\dw\dwweb\work";
    ThisDate = DateAdd ("d",-90, now());




    Select the name of AllFiles
    where datelastmodified<>






  • How can I get thunderbird to delete messages from the server

    When Thunderbird gets mail from the server, I want that he deleted from the server. How can I do this?

    The Menu bar, select Settings Server Tools-account settings

    Check the boxes that work for you.

    No menu bar display? Press the ALT key.

  • How to send data from the client to the server using tcp

    1. as I am new to watch I need help with sending data from client to server. I went through various examples of labview, but each of them also explains transfer of data to the client server. But I need help regardng send data from the server to the client.

    2.i would use the data type variant for sending my data.

    Can someone help me please. Thank you

    Regardless of the meaning. Once you have a connection each end allows it to send data to another. Just create what you want to look like interaction.

    Do you want the client sends a command that request data?
    How do you think the response data to look like?

    You can send variants, but probably not worth the effort.

    Mike...

  • I'm transferring my entire website from my old Web host at GoDaddy. How to copy all my files (in Dreamweaver) to my Web site from the server, it's on now, on my desk? So I can then connect you to my new server with GoDaddy and transfer all s

    I'm transferring my entire website from my old Web host at GoDaddy. How to copy all my files (in Dreamweaver) to my Web site from the server, it's on now, on my desk? So I can then connect you to my new server with GoDaddy and transfer all of the site?

    If you don't have local copies of your site on your computer...

    1 create a new Site definition using your old FTP GS-01 information: definition of a new site. Learn Dreamweaver CS5 & CS5.5 | Adobe TV

    2. Once you have the defined site and can connect, click on the Get (down arrow) command in the files Panel

    3 when you are prompted to hit "get the entire Site? Yes

    4. After downloading the entire site, navigate to the Site > Manage Sites > click the site > Edit > servers > click on the remote server > Edit to enter your new GoDaddy FTP Info

    5. after the test connection to check, you can connect, click the command Put (up arrow) in the files Panel

    If you have a site already defined for your old Web host, go to #4 above.

  • ESX 2.5 - How can I confirm if the server is start from the MUI SAN or SSH?

    ESX 2.5 - How can I confirm if the server is start from the MUI SAN or SSH?

    [root@esx011 /] # wwpn.pl
    vmhba0: 210000e08b1a51d3 (Qlogic) 5:4:0
    vmhba1: 210000e08b1a03d1 (Qlogic) 7:3:0

    [root@esx011 /] # wwpn.pl - v
    WWPN 1.02 Copyright VMware 2003
    Display the names of WW and VMHBA ports for fiber channel cards
    For each relevant here are the Qlogic vmhba and names of Port Emulex WW
    Adapter WWPN PCI (decimal)
    vmhba0: 210000e08b1a51d3 (Qlogic) 5:4:0 / proc/scsi/qla2300/2
    vmhba0:0: scsi-qla0-port-0 5005076300c7b4a2 = 5005076300c0b4a2:5005076300c7b4a2;
    vmhba0:10: scsi-qla0-port-10 500507680110b79d = 500507680100b79d:500507680110b79d;
    vmhba0:11: scsi-qla0-port 5005076300cc9561 - 11 = 5005076300 c 09561: 5005076300cc9561;
    vmhba0:12: scsi-qla0-port-12 5005076300c80db4 = 5005076300c00db4:5005076300c80db4;
    vmhba0:13: scsi-qla0-port-13 5005076300cbb0b1 = 5005076300c0b0b1:5005076300cbb0b1;
    vmhba0:1: 500507630308414 d scsi-qla0-port-1 = 5005076303ffc14d:500507630308414 d;
    vmhba0:2: 500507630313414 d scsi-qla0-port-2 = 5005076303ffc14d:500507630313414 d;
    vmhba0:3: scsi-qla0-port-3 5005076300c7b0b1 = 5005076300c0b0b1:5005076300c7b0b1;
    vmhba0:4: scsi-qla0-port-4 5005076300cbb4a2 = 5005076300c0b4a2:5005076300cbb4a2;
    vmhba0:5: scsi-qla0-port-5 5005076300cca01d = 5005076300c0a01d:5005076300cca01d;
    vmhba0:6: scsi-qla0-port-6 5005076300cc0db4 = 5005076300c00db4:5005076300cc0db4;
    vmhba0:7: b 500507680140, 799 scsi-qla0-port-7 = b 500507680100 799:500507680140 b 799;
    vmhba0:8: scsi-qla0-port-8 5005076300cfa01d = 5005076300c0a01d:5005076300cfa01d;
    vmhba0:9: 5005076300 c 89561 scsi-qla0-port - 9 = 5005076300 c 09561:5005076300 c 89561;
    vmhba1: 210000e08b1a03d1 (Qlogic) 7:3:0 / proc/scsi/qla2300/3
    vmhba1:0: scsi-qla1-port-0 5005076300d0a01d = 5005076300c0a01d:5005076300d0a01d;
    vmhba1:10: scsi-qla1-port-10 5005076300cf0db4 = 5005076300c00db4:5005076300cf0db4;
    vmhba1:11: 500507630318414 d scsi-qla1-port-11 = 5005076303ffc14d:500507630318414 d;
    vmhba1:12: 5005076300 c 49561 scsi-qla1-port - 12 = 5005076300 c 09561:5005076300 c 49561;
    vmhba1:13: 5005076300 d 09561 scsi-qla1-port - 13 = 5005076300 c 09561:5005076300 d 09561;
    vmhba1:1: scsi-qla1-port-1 5005076300c4b4a2 = 5005076300c0b4a2:5005076300c4b4a2;
    vmhba1:2: b 500507680130, 799 scsi-qla1-port-2 = b 500507680100 799:500507680130 b 799;
    vmhba1:3: scsi-qla1-port-3 5005076300c4b0b1 = 5005076300c0b0b1:5005076300c4b0b1;
    vmhba1:4: scsi-qla1-port-4 5005076300d0b0b1 = 5005076300c0b0b1:5005076300d0b0b1;
    vmhba1:5: scsi-qla1-port-5 5005076300c4a01d = 5005076300c0a01d:5005076300c4a01d;
    vmhba1:6: 500507630303414 d scsi-qla1-port-6 = 5005076303ffc14d:500507630303414 d;
    vmhba1:7: scsi-qla1-port-7 500507680120b79d = 500507680100b79d:500507680120b79d;
    vmhba1:8: scsi-qla1-port-8 5005076300d0b4a2 = 5005076300c0b4a2:5005076300d0b4a2;
    vmhba1:9: scsi-qla1-port-9 5005076300c30db4 = 5005076300c00db4:5005076300c30db4;
    [root@esx011 /] # vdf h
    Size of filesystem used Avail use % mounted on
    / dev/sda1 3.0 G 2.5 G 364 M 88%.
    / dev/sda3 15G 5.6 G 8.3 G 40% / images
    No 392M 392M 0 0% / dev/shm
    / dev/sda6 23% 424 M 1.4 G 2.0 G/var
    / dev/sda5 7.7 G 81 M 7.2 G 2% /vmadmin
    vmhba0:0:0:1 91 82 G 8.5 G 90% / vmfs / vmhba0:0:0:1
    vmhba0:1:10:1 15 G 15 G 0% 7.0 M / vmfs / vmhba0:1:10:1
    63 7.7 M 63 0% G G vmhba0:1:11:1 / vmfs / vmhba0:1:11:1
    vmhba0:1:1:1 63 63 G 0 100% / vmfs / vmhba0:1:1:1
    vmhba0:1:2:1 15 G 14 G 1.1 G 93% / vmfs / vmhba0:1:2:1
    vmhba0:1:3:1 63 63 G 0 100% / vmfs / vmhba0:1:3:1
    vmhba0:1:4:1 63 63 G 0 100% / vmfs / vmhba0:1:4:1
    vmhba0:1:5:1 15 G 14 G 1.1 G 93% / vmfs / vmhba0:1:5:1
    vmhba0:1:6:1 63 63 G 0 100% / vmfs / vmhba0:1:6:1
    vmhba0:1:7:1 63 63 G 0 100% / vmfs / vmhba0:1:7:1
    vmhba0:1:8:1 15 G 14 G 1.1 G 93% / vmfs / vmhba0:1:8:1
    vmhba0:1:9:1 63 63 G 0 100% / vmfs / vmhba0:1:9:1
    vmhba0:5:0:1 59 G 14 G 44 G 24% / vmfs / vmhba0:5:0:1
    vmhba0:6:3:1 29 G 14 G 14 G 49% / vmfs / vmhba0:6:3:1
    37 G 35 G 1.7 G 95% vmhba0:6:6:1 / vmfs / vmhba0:6:6:1
    vmhba0:7:0:1 499 G 450 G 49 G 90% / vmfs / vmhba0:7:0:1
    7.4 G 7.3 G 180 M 97% vmhba0:9:0:1 / vmfs / vmhba0:9:0:1
    37 G 36 G 1001 M 97% vmhba0:9:1:1 / vmfs / vmhba0:9:1:1
    vmhba0:9:3:1 G 7.4 7.4 G 0 100% / vmfs / vmhba0:9:3:1
    vmhba2:0:0:8 39 G 39 G 29 M 99% / vmfs / vmhba2:0:0:8
    [root@esx011 /] # df h
    Size of filesystem used Avail use % mounted on
    / dev/sda1 3.0 G 2.5 G 364 M 88%.
    / dev/sda3 15G 5.6 G 8.3 G 40% / images
    No 392M 392M 0 0% / dev/shm
    / dev/sda6 23% 424 M 1.4 G 2.0 G/var
    / dev/sda5 7.7 G 81 M 7.2 G 2% /vmadmin
    [root@nbxva011 /] # wwpn.pl
    vmhba0: 210000e08b1a51d3 (Qlogic) 5:4:0
    vmhba1: 210000e08b1a03d1 (Qlogic) 7:3:0
    [root@esx011 /] # cat /etc/lilo.conf
    command prompt
    Timeout = 50
    boot = / dev/sda
    install=/boot/boot.b
    linear
    default = esx

    image=/boot/vmlinuz-2.4.9-e.71smp
    label = linux
    root = / dev/sda1
    initrd=/boot/initrd-2.4.9-e.71smp.img
    read-only

    image=/boot/vmlinuz-2.4.9-e.71
    label = linux-up
    root = / dev/sda1
    initrd=/boot/initrd-2.4.9-e.71.img
    read-only

    image=/boot/vmlinuz-2.4.9-vmnix2
    label = esx
    root = / dev/sda1
    initrd=/boot/initrd-2.4.9-vmnix2.img
    read-only
    Append = "mem = 800M cpci = 0: *;" 1 : * ; 2 : * ; 3 : ; 4:5:0; 7:0; 9 : * ; 10:; 11:; 12: *; 14:; 15: *; 17:; 18: *; 20:; 21: *; 23:; 24: *; 26:; 27: *; 29:; »

    It's client server which I can not restart the server boot or HBA settings view.

    All points will be awarded.

    Thank you

    And in MUI - HBA is not shared with Service Console

  • Configuration of the AUSST. How can I easily check (Mac) computers are updated from the server AUSST?

    I installed everything according to the recipe. Video Karl Gibson watched this probably five times.

    A server

    Users have AdobeUpdate.Overwrites file in place

    Everyone's updates (couldn't than before by themselves).

    How can I easily see that updates are downloaded from the server AUSST instead of directly from Adobe online?

    I found this on my own.

    The answer lies (on mac) in the/Applications/Utilities/Console

    Look in the sidebar to download Adobe

    DML.log

    Hope this helps someone.

    22/06/14 21:32:13:409 | [INFO] |  |  |  |  |  |  | 2867720 | The download file is http://.local:80/Adobe/updates/oobe/aam20/mac/AdobeExtensionManagerCC-7.0/7.2/setup .dmg

  • I want to save the messages on my computer, but remove them from the server. How can I do this?

    Once I have download the messages on the hard drive of my computer, I want to delete them from the server. What should I do?

    Messages stored in local folders are yours to keep regardless of what is or isn't on any server.

    If you move the messages from the folder in the local folders account it will be achieve your needs in a single action; they will be saved locally and will be deleted from the server.

  • How can I create a filter to remove only "junk" from the server?

    One of my email accounts is an important customer. I manage their online customer service. Normally our protocol must always leave all messages on the server, so that one Thunderbird account, I never put delete messages on the server.

    But the account has recently started a lot of unwanted messages. Thunderbird is doing a remarkable job to those tagging and placing them in the folder junk e-mail for this account. I would like to create a filter that could remove them from the server, preferably more than "x" days old so I could monitor activity to ensure that no important messages are removed.

    I noticed that in "Filters" I can create a custom header of my choice filter, but am unable to create what I want which is:
    -After the mail is marked as junk by Thunderbird to delete messages from the server, if they are older than "X" days (my choice of 'X').
    -not to delete all messages in the server for this account

    Try:

    • Right-click the junk e-mail folder and select "Properties".
    • Click on ' retention policy tab
    • He chooses to "use my account settings."
    • Uncheck this option for other options.
    • Select: for example: delete messages more than x days.
    • Click OK to save the changes.
    • Close and then restart Thunderbird
  • Thunderbird 45.4.0 - how to remove messages from the imap server

    Mail is left on the server unless I choose the option to delete messages immediately, I want to delete messages from the server when I connect to Thunderbird and they have been downloaded on my PC. When I delete messages on my PC, I want them to go to the trash until I empty folder.

    This worked on Windows Live Mail.  Would switching to POP server help?
    

    Messages, I've read about IMAP seem to say that they would be removed by default. Maybe I'm wrong...

    Thanks for any help you can provide

    Message filters can move a message to any folder. See 'Tools' from the main menu.

    http://www.flossmanuals.NET/Thunderbird/filters/

  • New content directly from the server

    How can I force my browser to download new content directly from the server? It was possible to do so using the SHIFT key pressed and make page reload at the same time. I tried and it didn't work. I'm doing something wrong?

    You can reload webpages and ignore the cache to refresh potentially stale or corrupt.

    • Hold down the SHIFT key and click the Reload button
    • Press 'Ctrl + F5' or 'Ctrl + Shift + R' (Windows, Linux)
    • Press 'Command + shift + R' (Mac)
  • Satellite 5205-s705: How can I boot from the CD/DVD drive

    I can't run Setup from my cd/dvd rom, there is no such option in the BIOS Setup. How can I boot from the cD or DVD?
    Please, help me!

    Hello

    You are not able to boot from the CD/DVD drive?
    If you are unable to change the boot order in the BIOS, I would advise you by pressing the F12 key immediately after starting the laptop.
    A start menu should appear, then you should be able to choose the reader of CD/DVD (ODD).

    You can also try clicking on the C instead of the F12 button. The C button the STRANGE start.

    Check this back and forth!

    Good luck

  • Mailbox unavailable. The response from the server is: 5.7.1 error: content rejected

    I have an application that sends emails when running. Off late a user when he tries to send a mail it receives the following error message...

    "System.Net.Mail.SmtpException: unavailable mailbox." "The response from the server is: 5.7.1 error: content rejected '...

    Note that this happens when he tries to send mail to itself and not otherwise. Can someone here on which could mean the error? Thanks in advance... :))

    Error code is generated in the back-end.

    'System.Net.Mail.

    to System.Net.Mail.

    to System.Net.Mail.

    to System.Net.Mail.

    to System.Net.ClosableStream.

    to System.Net.Mail.MailWriter.

    to System.Net.Mail.SmtpClient.

    Hi guys,.

    Thanks for the reply!

    I contacted my sources by taking care of the servers and realized that the user was an id in which the address of the server was not set up with our servers in domain. He used to connect to our servers using the VPN client. This is why he could not send mails to id field not (in this case itself).

  • BlackBerry Q10 delete Emails from the server

    After downloading the latest version of the software - 10.2.1.2102, when deleting an e-mail, a message appears asking me to delete the message from my device only, or from the server as well. I clicked on Do not show this message again. Now when I delete messages on my Q10, I must also remove from my laptop. How can I return this message? Thank you.

    Hello

    While in the center of BlackBerry, press Action (lower-right), then settings > display and Actions.

    Scroll down, and then tap on Delete on and select prompt.

    Now you can delete on handheld pocket alone - or - computer and the server.

Maybe you are looking for