Specifying Directory path while creating Oracle Directory

Hi All,
I would like to know the restriction applies on directory path while creating oracle directories.
shold directory exist on local server? What about remote locations?
Please share your thoughts.
_BR                                                                                                                                                                                                                                                                                                                                                                                                                                                   

B R wrote:
Hi All,
I would like to know the restriction applies on directory path while creating oracle directories.
shold directory exist on local server? What about remote locations?It should, but it doesn't have to whilst you create the oracle directory object. It is only when oracle comes to use that directory object that it will need to exist otherwise you'll get an error. Oracle doesn't check the path upon creation of the directory object itself.
The directory object should point to a path that is visible from the database server such that, if you were logged directly onto the server itself, you could access that directory from there (and preferably without UNC paths, as Oracle has been known to have issues with those in some versions). Typically the directory will be on the server itself, but if it must be on a remote location it will need to be mapped as if it is a local directory. You can't expect Oracle to hack across the security of a network and break into another machine to access it's directories without explicit permission having alreayd been granted at the operating system level.

Similar Messages

  • How to give network path while creating oracle directory.

    I have created
    CREATE OR REPLACE DIRECTORY TESTDIR AS '\\168.176.33.117\TESTDIR';
    but through this path i m not able to create text file.
    create or replace procedure WriteTest is
    f utl_file.file_type;
    s varchar2(200) := 'this is some info';
    begin
    f := utl_file.fopen('TEST2DIR','sample2.txt','W');
    utl_file.put_line(f,s);
    utl_file.fclose(f);
    end WriteTest;
    Help how to give network path while creating oracle directory.
    --when i give local machine path then it will create at local machine where oracle is installed. but not able to create at other machine.
    Zakir

    Well for starters your directory object is called TESTDIR and in your fopen statement you are referring to TEST2DIR.
    On top of that I'm not sure oracle is happy to refer to network locations. I think you have to map it to a regular drive mapping (shared directory) type path. Can't say I've every tried to do it though.

  • Wrong path while creating Home-directory

    Hello,
    i hope i am in the right directory for my question!
    Under Leopard Server I set up an DNS Server wich works quite good so far...
    When i try to set up the Home-directory for an new user the networkpath is always wrong.
    My normal server adress is : "hale.school.private" the Usergroupmannager always set "afp://hale.private/user"!
    Where can i change this?

    _*Here an Copy of my changeip command:_*
    +hale:~ Administrator$ sudo changeip -checkhostname+
    Password:
    +Primary address = 192.168.2.107+
    +Current HostName = hale.school.private+
    +DNS HostName = hale.school.private+
    +The names match. There is nothing to change.+
    _*And here theproblem in the Workgroupmanager:*_
    Message was edited by: sykane

  • Maximum length of  the Path that can be given while creating a directory

    Hi
    I would like to know the maximum length of a path that can be given in solaris?
    e.g i have to create a directory like this
    mkdir /a/b/c..../z ]---> what can be the max length ?
    in the same way while reading a path also.
    i heard something like getconf PATH_MAX .But i dont know what is this used for.
    the value i got when i executed the above command is 1024 ]-->what is this value?
    Thanks in advance
    Raghu Amilineni

    raghu_java wrote:
    Hi
    I would like to know the maximum length of a path that can be given in solaris?What do you mean by "given"? The maximum that you can pass to the OS directly in many cases is PATH_MAX. But you can have files exist that are described by much longer absolute paths.
    e.g i have to create a directory like this
    mkdir /a/b/c..../z ]---> what can be the max length ?Very long in some sense. But mkdir will probably fail if handed a string longer than PATH_MAX.
    in the same way while reading a path also.
    i heard something like getconf PATH_MAX .But i dont know what is this used for.
    the value i got when i executed the above command is 1024 ]-->what is this value?That is the guaranteed limit for the length of a path that system calls will deal with. But it is possible the absolute path of a file may be larger.
    Darren

  • Validating datafile directory path before creating it

    Hi,
    Is there a way to validate the datafile path when creating a tablespace. The creation of tablespace is done through Java/JDBC application.
    Before attempting creating of the tablespace i would like to validate the path of the datafile provided is correct or wrong. Based on that the same can be specified to user to change the data file path.
    Please let me know if there is a way.
    Otherwise i am thinking of creating and deleting a test tablespace with the provided datafile path.
    Thanks,
    Krishna

    871609 wrote:
    Sybbrand Bakker,
    Thanks for your critical analysis of the approach. There is a requirement for creating tablespace during install of the product. The prerequisites that are required for the product are created upfront during the installation. There is a chance for typos during entering the datafile path. So it is very critical for me to know if there is a way let me know to validate the datafile path through SQL.
    Thanks,
    KrishnaWhile I agree with Sybrand's point about the wisdom of such an approach, if you are bound and determined to take the road to Database Hell, I'd suggest that you check it before it gets to SQL. You are having to capture the path from user input using java, so do the sanity check with java before building your SQL.

  • CREATE DIRECTORY Does not Create Any Directory in My File System Hard Disk

    create or replace directory emp_dir
    as 'D:\emp_direc';
    Main Question:
    *1. Transaction succeeded, but i have not seen emp_direc created in my D: drive. I'm running Vista Home Edition x32. Any idea why directory does not show up?*
    Optional:
    Extra info:
    after creating a directory i did: - avoid comment sign
    --create table oldemp ( fname char(25), lname char(25) )
    --organization external
    --(type oracle_loader
    -- default directory emp_dir
    -- access parameters
    -- ( records delimited by newline
    -- nobadfile
    -- nologfile
    -- fields terminated by ','
    -- (fname position(1:20) char,
    -- lname position(22:41) char)
    -- location ('emp.dat')
    --parallel 5
    --reject limit 200;
    Table created successfully, then I did
    describe oldemp;
    Name NULL Type
    FNAME CHAR(25)
    LNAME CHAR(25)
    2 rows selected
    Extra questions:
    *2. emp.dat carries all the table data which can make data more portable to different oracle servers. However, it is one time operation, once table is populated, i can not update, insert, delete any rows. Thats what i know, if i'm wrong please let me know. If what i said is true, just confirm it if you don't mind...*
    *3. Parallel 5, allows five oracle servers to deal with the emp.dat file at the same time. So won't there be any conflict! Maybe one server wants to read a certain data while the other server wants to delete it. Can you clarify please....*

    user11164565 wrote:
    create or replace directory emp_dir
    as 'D:\emp_direc';
    Main Question:
    *1. Transaction succeeded, but i have not seen emp_direc created in my D: drive. I'm running Vista Home Edition x32. Any idea why directory does not show up?*
    <snip>
    From the fine SQL Reference Manual found a tahiti.oracle.com, in the prerequisites for the CREATE DIRECTORY command:
    For file storage, you must also create a corresponding operating system directory, an ASM disk group, or a directory within an ASM disk group.
    Your system or database administrator must ensure that the operating system directory has the correct read and write permissions for Oracle Database processes.
    Privileges granted for the directory are created independently of the permissions defined for the operating system directory, and
    the two may or may not correspond exactly. For example, an error occurs if sample user hr is granted READ privilege on the directory object but
    the corresponding operating system directory does not have READ permission defined for Oracle Database processes.

  • Error while creating Oracle DB connection in Endeca Intergrator 3.1

    Hi All,
    I am facing an issue while creating a new Oracle DB connection using Inegtator in 3.1 version.
    I get the following exception:
    loader constraint violation in interface itable initialization: when resolving method "oracle.jdbc.OracleConnectionWrapper.setWrapper(Loracle/jdbc/OracleConnection;)V" the class loader (instance of org/jetel/util/classloader/GreedyURLClassLoader) of the current class, oracle/jdbc/driver/OracleConnection, and the class loader (instance of org/apache/catalina/loader/StandardClassLoader) for interface oracle/jdbc/OracleConnection have different Class objects for the type oracle/jdbc/OracleConnection used in the signature
    we dont have SID but service name and we use like the following in earlier versions:
    jdbc:oracle:thin:@localhost:1556/xx_yy.us.oracle.com
    Not sure what is the issue... Any pointers are appreciated!!
    Thanks in Advance,
    Kartik P.

    Could you have installed Integrator ETL Server into the same Tomcat instance as Studio?  That's not a supported configuration per http://docs.oracle.com/cd/E40518_01/integrator.311/integrator_install/toc.htm#Installing%20Integrator%20ETL%20Server%20on%20Tomcat : "Integrator ETL Server must be installed on a standalone Apache Tomcat. Do not install Integrator ETL Server on a Tomcat server that is being used to host other applications. For example, do not install Integrator ETL Server on the Tomcat that is hosting Studio. ".

  • Get directory path. Just the directory path, without the file name.

    Hi,
    I need to export a file from a table in SAP to a directory in the PC. So i need to get a directory path.
    I've been reading the threads but all the answers refer to functions F4_FILENAME, WS_FILENAME_GET, KD_GET_FILENAME_ON_F4 or to the method CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG.
    But all of them require to select a file to close the window.
    What I need is to get the path to the directory, not to a file.
    For example:
    I just need to get:
    C:\TEMP
    and not:
    C:\TEMP\file.doc
    Please help.
    Thanks.

    Pablo, use cl_gui_frontend_services=>directory_browse.
    Refer this code:
    PARAMETERS:
      p_path         TYPE rlgrap-filename OBLIGATORY.
    DATA:
      gv_path_ini    TYPE string,
      gv_path_sel    TYPE string.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_path.
      CALL METHOD cl_gui_frontend_services=>directory_browse
        EXPORTING
          initial_folder  = gv_path_ini
        CHANGING
          selected_folder = gv_path_sel
        EXCEPTIONS
          cntl_error      = 1
          error_no_gui    = 2
          OTHERS          = 3
      IF sy-subrc = 0.
        CALL METHOD cl_gui_cfw=>flush( ).
        IF NOT gv_path_sel IS INITIAL.
          gv_path_ini = p_path = gv_path_sel.
        ENDIF.
      ENDIF.
    As a side note, always avoid any WS_* function modules as they're not Unicode compliant.
    Regards

  • Problem while creating Oracle Content Server Identity plug-in  in SES

    Hi,
    I am Integrating Oracle SES with UCM.Both UCM and Oracle SES are installed on the same machine.
    I have installed SESCrawlerExport compoent on UCM and also taken Snapshot of Repository.
    But when i am trying to create Oracle Content server Identity plug-in in SES it gives following exception.
    Inputs:-
    1) HTTP endpoint for authentication- http://localhost:100/idc_new/idc
    2) Admin User - sysadmin
    3) Password - idc
    09/10/15 15:06:33 INFO     HTTPThreadGroup-7               URIHandler initialized for the URI http://localhost:100/idcnew/idcplg
    09/10/15 15:06:33 INFO     HTTPThreadGroup-7               StellentIdentityPlugin.autheticate: username=sysadmin
    09/10/15 15:06:33 FATAL     HTTPThreadGroup-7               EQP-80309: Exception while opening a stream to the URI: http://localhost:100/idcnew/idcplg
    09/10/15 15:06:33 FATAL     HTTPThreadGroup-7     EQP-80317: HTTP connect attempt failed after 3 attempts. Aborting connection attempt oracle.search.sdk.common.PluginException oracle.search.plugin.rss.HTTPHandler:getInputStream:302 java.lang.Thread:run:534
    09/10/15 15:06:33 ERROR     HTTPThreadGroup-7               EQP-80354: Exception while authenticating user sysadmin: EQP-80317: HTTP connect attempt failed after 3 attempts. Aborting connection attempt
    09/10/15 15:06:33 ERROR     HTTPThreadGroup-7     EQP-80317: HTTP connect attempt failed after 3 attempts. Aborting connection attempt oracle.search.sdk.common.PluginException oracle.search.plugin.rss.HTTPHandler:getInputStream:302 java.lang.Thread:run:534
    09/10/15 15:06:33 EQP-80353: Exception while validating parameters: EQP-80317: HTTP connect attempt failed after 3 attempts. Aborting connection attempt
    Please help me on the same.
    Regards,
    Nitin

    If the error message is correct, it means that no listener is running on port 100.
    Where did you get the URL http://localhost:100/idc_new/idc ?
    Is UCM using port 100 as it's standard port?
    What happens if you try to open this in a browser (running on the localhost machine)?

  • OMWB 1.4.1 hangs while creating Oracle Model

    Hi,
    I'm migrating Sybase11 to Oracle 8.1.7 using OMWB 1.4.1.I'm
    able to create the Sybase model but the tool hangs while
    creating the Oralce model while mapping check constraints.
    What could be the possible reason??
    Reply ASAP pls!
    TIA
    Bharath

    Hi,
    Have you tried OMWB 2.0.2?
    Regards
    John

  • Problem while creating Oracle Content Server source  in SES

    Hi,
    I am Integrating Oracle SES with UCM.Both UCM and Oracle SES are installed on the same machine.
    I have installed SESCrawlerExport compoent on UCM and also taken Snapshot of Repository.
    But when i am trying to create Oracle Content server Source in SES, it gives following exception.
    13:05:46:562 INFO     main          Crawling started at 10/15/09 1:05 PM
    13:05:47:578 INFO     main          URL manager connecting to Oracle...
    13:05:47:843 INFO     main          connected
    13:05:47:984 ERROR     main          EQG-31209: No security attribute defined for source (id=70)
         at oracle.search.crawler.WebCrawler.init(WebCrawler.java:631)
         at ImtCrawler.run(ImtCrawler.java:1954)
         at ImtCrawler.main(ImtCrawler.java:534)
    13:05:47:984 ERROR     main          EQG-30249: Crawler process aborted
    Please help me on the same.

    Thanks very much, Roger. That's very kind of you. The answer was very helpful. I've changed the host and realm accordingly, and altered the Authentication Type to BASIC (previously NATIVE).
    When I now try a crawl of UCM, it fails and the log file provides the debugging info listed at the bottom of this message. I've tried to research the exception type and have experimented by altering a few configuration values, but have so far failed to resolve the issue. Are you able to hazard a guess as to what could be causing it?
    The parameters I am using are listed below (I have only entered/changed values under the three tabs listed; any fields under those tabs which are omitted below have been left blank):
    Source Configuration
    Configuration URL: http://<hostname>/ucm/idcplg?IdcService=SES_CRAWLER_DOWNLOAD_CONFIG&source=feeds
    Authetication Type: BASIC
    Realm: ucm
    User ID: sysadmin
    Password: <password for sysadmin>
    Max connections: 3
    Authentication
    Host: <hostname>
    Realm: ucm
    Username: sysadmin
    Password: <password for sysadmin>
    Authorization
    ACLs controlled by Source
    HTTP endpoint: http://<hostname>/ucm/idcplg
    Display URL prefix: http://<hostname>/ucm
    Administrator user: sysadmin
    Administrator pw: <password for sysadmin>
    Display crawled version: true
    Authorization user ID format: username
    Use cached user and role info to authorize results: false
    Authentication Type: BASIC
    Realm: ucm
    Debugging info:
    09/10/23 11:29:05 oracle.search.admin.exception.DBSetException
    09/10/23 11:29:05      at oracle.search.admin.util.AdminObject.handleBackEndException(AdminObject.java:297)
    09/10/23 11:29:05      at oracle.search.admin.users.InstanceManager.isOwnerOfInstance(InstanceManager.java:497)
    09/10/23 11:29:05      at schedules.schedules._jspService(_schedules.java:551)
    09/10/23 11:29:05      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    09/10/23 11:29:05      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    09/10/23 11:29:05      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    09/10/23 11:29:05      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    09/10/23 11:29:05      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    09/10/23 11:29:05      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    09/10/23 11:29:05      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    09/10/23 11:29:05      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    09/10/23 11:29:05      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
    09/10/23 11:29:05      at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
    09/10/23 11:29:05      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
    09/10/23 11:29:05      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    09/10/23 11:29:05      at java.lang.Thread.run(Thread.java:534)
    09/10/23 11:29:05 oracle.search.admin.exception.DBSetException
    09/10/23 11:29:05      at oracle.search.admin.util.AdminObject.handleBackEndException(AdminObject.java:297)
    09/10/23 11:29:05      at oracle.search.admin.users.InstanceManager.isOwnerOfInstance(InstanceManager.java:497)
    09/10/23 11:29:05      at control.error._jspService(_error.java:543)
    09/10/23 11:29:05      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    09/10/23 11:29:05      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    09/10/23 11:29:05      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    09/10/23 11:29:05      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    09/10/23 11:29:05      at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    09/10/23 11:29:05      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    09/10/23 11:29:05      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    09/10/23 11:29:05      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    09/10/23 11:29:05      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    09/10/23 11:29:05      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    09/10/23 11:29:05      at java.lang.Thread.run(Thread.java:534)
    Thanks again.

  • How can i specify username/password while creating a virtual directory

    Hi,
    i m trying to create a virtual directory in 9iAS on a mapped drive. How can i specify which username password to use to enable to connect to the network mapped drive. Is there any way where we can specify username / password ???
    thanks
    Unmesh

    9iAS R1
    Run the report service as a local account with administrator rights.
    On the target server, create a local account with the same user name and password.
    Now you can use the hidden shares ($) for example:
    &destype=file&desname=\\servername\d$\report_output\report.pdf
    9iAS R2 and 10g
    Pretty much the same thing except by default, the report server runs inline. I have not been able to get the entire service to run as a particular user. To get around this, I created a report server service and do not run the reports in process. It uses the separate service.
    rwserver -install rep90_name
    edit <ORACLE_HOME>\reports\conf\rwservlet.properties file.
    SERVER_IN_PROCESS=NO
    SERVER=rep90_name
    Edit service for rep90_name and change it to run as local administrator user you created on both servers and then start the service.

  • TM problem "Unable...Error occurred while creating backup directory."

    TM has faithfully created backups until 2/3/09 to my Western Dig 300 GB external, USB connected. It still has room for 238 GB data. Now it gives me this error message:
    Starting standard backup 02/09/09
    Backing up to:/Volumes/Time Machine: Ext HD/Backups.backupdb
    Failed to create progress log file at path:/Volumes/TM:Ext HD/Backups.backupdb/iMac's
    computer(3)/2009-02-03-02-754.in Progress/.Backup.255910073.264303.log.
    Error: (-50)Creating directory 74D63BBC-4DB4-4A10-BE6C-C78DA438D63C
    Failed to make snapshot
    Backup failed with error:2
    I downloaded CarbonCopyCloner, thinking I may have to erase External drive and start over,...but it also failed with a LONG< LONG error message. Can anyone help?

    kornkid wrote:
    When I tried to repair Ext drive, this message appears after only about 30 seconds:
    "Time Machine:Ext HD" could not be mounted.
    mounted or unmounted? I suspect it's the former.
    I've never booted up from Leopard install disk. Can you give me steps?
    while the problem seems to be with your TM disk you can try repairing both of them from the install DVD. insert the DVD and reboot normally. hold "c" at the chime. you'll be booted into leopard installer. once past the language selection screen choose 'disk utility" from Utilities menu at the top.

  • Can not create directory error while creating database

    i am creating database using dbca in oel but when i try to do so i get an error saying can not create directory pawii
    and pawii is the sid
    actually oracle is installed on u01 and i am creating database in u02
    but this error is not allowing me to create database but when i try to create database in uo1 the database installed successfully but this is not happening when i try to create database in another mount point u02

    987018 wrote:
    so finally i had solved the problem myself as people like rukbat are very unhelpful in nature here
    all we had to do is we had to change the group of the folder to oracle and oinstall where we are going to create our new database :)Actually he tries to be quite helpful. But sometimes the help you need isn't the help you want.
    "When you need me but do not want me, then I must stay. When you want me but no longer need me, then I have to go." (Nanny McPhee)

  • Integration directory problem while creating business service

    HI,
    CURRENTLY I AM FACING A PROBLEM IN INTEGRATION DIRECTORY. WHEN I TRY TO CREATE A BUSINESS SERVICE INSIDE THE SERVICE WITHOUT PARTY WHICH I AM TAKING AS A SENDER, I AM UNABLE TO GET THE SOFTWARE COMPONENT VERSIONS IN THE SENDER PARAMETERS.
    IF ANYONE CAN GIVE THE COMPLETE CONFIGURATION STEPS FOR SENDER AND RECIEVER SYSTEM THAT WILL BE VERY HELPFUL.
    BEST REGARDS,
    MONA

    Hi Mona,
    Let me explain you in detail:-
    First, Activate the Change List in the Integration Repository once the design objects are complete.  By activating the change list, the object becomes available for Configuration in the Integration Directory.
    Secondly, to transfer Integration scenario from Integration Repository - you need your Integration Scenario to be created correctly and when you run this wizard you actually pull the Integration scenario in the Integration directory.
    You also have the option of 'Configuration Wizard'.
    This tool is a wizard for creating your Recevier Determination, Receiver Agreement, Sender Agreement and Interface Determination. For this tool, you do not need the Integration scenario
    It is not mandatory to use any of these tools to configure your scenario.
    All you have to do for configuring your scenario is
    1. Create Business system/Business service
    2. Create Communication Channel
    3. Create Receiver Determination
    4. Create Interface Determination
    5. Sender Agreement
    6. Receiver Agreement
    I hope this provides you a solution.
    Regards.
    Praveen

Maybe you are looking for

  • Passing values to formula

    Hi All,         Is there any function module to create and read formula?Here I need to calculate the price for purchased material.i am using  formula to calculate price.Each tax code having its won formula.       I would like to store these formula i

  • Vocal is not coming out equally on both speakers. Please help!

    I use Logic Pro 9. The lead vocal of my song is only coming out of the right speaker, while the backups are only coming out of the left speaker. I checked the pans and they are set to zero. Yet, it is still playing back this way. I tried panning oppo

  • Missing driver problem

    hey cisco i was just setting up a network share on my wifes vista computer and got a missing driver and it seems to be a often occuring problem for many people please have your support team take a look at this http://answers.microsoft.com/en-us/windo

  • HT4623 Hello - I have a single question. Anyone who how to undo an update ? The update to iOS 7... was a failure. Is it at all possible to undo an update?

    Hello - I have a single question. Anyone who how to undo an update ? The update to iOS 7... was a failure. Is it at all possible to undo an update?

  • No TV Shows menu

    For some reason when I go to the Videos menu on my iPod, there is no TV Shows option. I have a couple of videos listed as TV Shows but they don't seem to be available on my iPod. I know that his is a minor problem and one that is easily worked around