Scripts dbconsole,listener,etc,...

Hi when I shutdown;
the dbconsole service,listener,database is also closed. Where can I find the scripts, so that I dont have to rerun the services, open database,etc...
Message was edited by:
Ricardinho

how can I configure dbstart so that when I restart
machine the db is opened automaticallyThis is platform dependent. If you are running unix, they have different ways of setting auto startup for applications/programs/scripts (not only for Oracle).
So you need to know or mentioned what OS you are running, then you can get information on what to pass to the unix startup.
But as I said, you still need to update and bulk these together in a script to be able to start Database, DB Console and Listener at the same time, then pass the unix scriptup

Similar Messages

  • Dbconsole/listener/tnsping  performance 11gR2

    I am seeing performance issue while connecting to dbconsole/listener/tnsping etc & this is tail of my alert log, what could be the issue?
    Fatal NI connect error 12537, connecting to:
    (LOCAL=NO)
    VERSION INFORMATION:
    TNS for Linux: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.1.0 - Production
    TCP/IP NT Protocol Adapter for Linux: Version 11.2.0.1.0 - Production
    Time: 04-FEB-2010 15:53:54
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12537
    TNS-12537: TNS:connection closed
    ns secondary err code: 12560
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    opiodr aborting process unknown ospid (22785) as a result of ORA-609
    Thu Feb 04 15:53:54 2010
    Fatal NI connect error 12537, connecting to:
    (LOCAL=NO)
    VERSION INFORMATION:
    TNS for Linux: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.1.0 - Production
    TCP/IP NT Protocol Adapter for Linux: Version 11.2.0.1.0 - Production
    Time: 04-FEB-2010 15:53:54
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12537
    TNS-12537: TNS:connection closed
    ns secondary err code: 12560
    nt main err code: 0
    nt secondary err code: 0
    nt OS err code: 0
    opiodr aborting process unknown ospid (22806) as a result of ORA-609
    Thu Feb 04 15:54:24 2010
    Starting background process SMCO
    Thu Feb 04 15:54:24 2010
    SMCO started with pid=21, OS id=23297

    is any type of Operating System Virtualization installed on this system?

  • When trying to creat a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem...

    Question
    When trying to create a desktop icon, it does not go to the URL.....instead I get 'script' and not a website......the script has http//etc but I am not directed to the website......I previously had IE 8 (on Vista).....is that the problem?I do not have any installed plugins....at least none that I know of.....remember I am a new user......Basically, the desktop icon is not going directly to the Mozilla FF to get me to the web site I need to go to.....FF works when I use the Mozilla FF icon.....just not the icons I create.....THANKS!!! I have also tried reinstalling FF and get the same results.....HELP!!!

    The address beginning with file:/// denotes a saved file (local file). The file may not be present. You can try dragging the site icon of this page on the left edge of the location (Address) bar and release it on the desktop. Please try opening it. If it still shows an error it could be a problem with the system's zone permissions. You can try setting each zone in the Windows Control Panel or IE > '''Internet Options''' > '''Security''' tab to '''Default Level'''.

  • Cs5 on a new pc transferring actions/scripts/pre-sets etc?

    I have just upgraded computers and re-installed CS5 on it.
    Is it possible to cut and paste actions/scripts/pre-sets etc from old pc to new one.
    If so how/where would I find them?
    Thank you
    Tim

    each program has its own location for its settings.  eg, ps:  http://helpx.adobe.com/photoshop/kb/preference-file-functions-names-locations.html

  • Running scripts, bat files, etc from a jar file

    Hello,
    Does anyone know of a way, or even if it is possible to run a script or batch file from a jar file?
    For instance, lets say I have a batch file that I can run from the command prompt by typing :
    myBatchFile.bat
    and now I write a very simple java app that will do the same:
    public class Test {
    public static void main(String[] args) {
    try {
    Runtime rt = Runtime.getRuntime();
    Process p = rt.exec(�myBatchFile.bat�);
    } catch (Exception e) {
    e.getMessage();
    The above app will work as long as the batch file is in the current directory, but how or can I make it work if I stick the batch file in a jar file along with the app?
    I tried using the manifest file with no luck.
    I tried creating a URI to the jar file, wrapping it in a File and then passing that File to the exec method also with no luck.
    I searched all the forums on Sun but came up with nothing.
    I performed a google search also with no luck.
    Does anyone have the answer to this? Even if I can get a definitive �No it can�t be done� answer. Although I would think that it should be able to be done.
    Thanks

    Hi,
    you cannot execute anything being inside a jar-file. The OS doesn't know anythig about jar-files and cannot look inside one to find the program/script/batch you want to execute.
    You could do a workaround by extracting the file from the jar-file before calling exec(). But normally OS dependent files should not be inside a jar-file and remain in a own directiory.
    Andre

  • ApplescriptObjC: Add breaks in a script to listen to buttons?

    Hi everyone,
    I know, the title is a bit crappy, but I didn't know how to explain it.
    In the begining of the script, I have:
        property mainwindow : missing value
        property LoadingBarWindow : missing value
        property theloadingbar : missing value
        property theloadingbarlabel : missing value
        property TLBLactionname : missing value
        property TLBLactions : ""
        property theactionnumberlist : missing value
        property stoploadingbar : 0
    These are all properly connected.
    Then I've my action, which has a loop:
    on showtheloadingbar_(aNotification)     
            --Pre-setting       
            set TLBLactionname to "Downloading the FireFox icon"
            set TLBLactions to "4"
            set theactionnumberlist to {"Getting the name of the FireFox icon", "Copying the Firefox icon", "Transforming .icns into .png", "Finishing"}
            --End pre-setting       
            set numberofactions to (number of items of theactionnumberlist)
            set theextra to 0
            LoadingBarWindow's setTitle_(TLBLactionname & "...")
            theloadingbar's setMaxValue_(numberofactions)
            mainwindow's orderOut_(me)
            LoadingBarWindow's makeKeyAndOrderFront_(me)
            --Start Loop
            repeat until (numberofactions = 0)
                if stoploadingbar = 0 then
                    theloadingbarlabel's setStringValue_((item ((numberofactions - (numberofactions - 1)) + theextra) of theactionnumberlist) & "... (" & ((numberofactions - (numberofactions - 1)) + theextra) & " of " & TLBLactions & ")")
                    theloadingbar's setIntValue_(((numberofactions - (numberofactions - 1)) + theextra))
                    --Updating to next bar
                    set theextra to theextra + 1
                    set numberofactions to numberofactions - 1
                else if stoploadingbar = 1 then
                    exit repeat
                end if
                delay 5
                 end repeat
                delay 2
            LoadingBarWindow's orderOut_(me)
            mainwindow's makeKeyAndOrderFront_(me)       
        end showtheloadingbar_
    Then I've another actions, which should counteract the first action:
    on cancelloadingbar_(aNotification)
            set stoploadingbar to 1
        end cancelloadingbar_
    And I connected a button to this action...
    But when the first action is running, I can't click the button to activate the second script.
    The button simpely doesn't respond, even no push-in.
    Even worse, my app doesn't respond at all, until the first action is finished.
    ButI want it to look if button is pressed.
    Please help,
    Isaiah

    When using AppleScriptObjC (or even Objective-C), blocking the user interface is one of the big differences from regular AppleScript.  You may have also noticed that additional clicks (if you have not disabled the buttons) get backed up, so if you click on a button several times they will all happen at once when the interrface gets unblocked.
    Your loops and other time consuming events (even the delay command) need to be broken up so that the application run loop has a chance to update the event queue.  This can be done by things such as running shell scripts using NSTask, using a timer or performSelector:withObject:afterDelay: instead of the loop, or by periodically running a handler to manually update the events.
    Periodically calling the following handler (from Shane Staney's AppleScriptObjC Explored ebook) from inside your loop should do the trick:
      on fetchEvents() -- handle user events (Shane Stanley)
        repeat -- forever
          tell current application's NSApp to set theEvent to nextEventMatchingMask_untilDate_inMode_dequeue_(current application's NSUIntegerMax, missing value, current application's NSEventTrackingRunLoopMode, true)
          if theEvent is missing value then -- none left
            exit repeat
          else
            tell current application's NSApp to sendEvent_(theEvent) -- pass it on
          end if
        end repeat
        return
      end fetchEvents

  • New IP caused a problem to launch DBConsole & listener (Oracle 10gR2)

    Guys,
    I have installed Oracle 10gR2 on XP system. My dev machine does not have permanent IP address and recently it has been changed.
    As a result I can launch Listener and Enterprise Manager - it‘s a problem to start OracleDBConcoledev01 and OracleOraDb10g_home1TNSListener.
    My sid name is dev01. I found 2 folders where the old IP is involved:
    <c:\oracle\ora1020\db01\192.168.188.71_dev01> and
    <c:\oracle\ora1020\db01\oc4j\j2ee\OC4J_DBConsole_192.168.188.71_dev01>
    I saw some articles, but didn’t find exact solution of my problem.
    I would appreciate very much any help regarding steps I should go through to make my Oracle working again.
    Thanks,
    ilia

    Open command prompt, type
    C:\> emca -repos recreateand press enter.

  • Scripting recources books etc

    Does any one know any good scripting books or resources for DVDSP?
    Cheers Angus

    The problem I have found about this is that there are so many ways to achieve the same things when you get into scripting that a book would be hard to write. There are some generic chapters in some books, and some good ideas in others. probably the best place to start reading is martin Sitter's book, DVD Studio Pro. After that I'd look at Erica Sadun's book, DVD Studio Pro Solutions.
    As for online resources there are quite a few now. Apart from this forum, which has a wide range of users, you can check out http://www.editorsbin.com and http://www.rootdvd.com - both of which have good examples and projects to download.
    Was there a particular issue that you wanted to focus on first, or are you just looking for general help?

  • After installing addons such as no script and metacret etc , i cant see them on my browser and they are enabled? on the previous version of the broswer i could see them such as no script?

    why cant i see my add ons? they are enabled this only happened after i updated my broswer to version 5

    Hello there. Thanks for your quick reply. What will happen when i rename it to sessionstore.js.sav? Do i have to disable my add-ons before doing this? Since June is coming will it retain its older data or something? Cause i am really scared that my tabs might be gone forever once June comes along, and i have to search through history for my tabs which i really don't have time for. Do you know how to bookmark all the open tabs at once? Well some of them are bookmarked but just to keep things in order how do I duplicate the bookmarks? Really appreciate your help cor-el.

  • /etc/init.d/imq script fix for RedHat Linux?

    I'm using Message Queue 3.0.1 SP2 (Build 4-a) Platform Edition and trying to get it set up to run on a RedHat machine.
    I am finding that ps (procps version 2.0.7) is not compatible with the script installed as /etc/init.d/imq.
    Specifically, that script's findproc function looks like this:
    # find the named process(es)
    findproc() {
      pid=`/bin/ps -ef |
      /bin/grep -w $1 |
      /bin/grep -v grep |
      /bin/awk '{print $2}'`
      echo $pid
    }and the script later calls
    findproc $EXECUTABLEThe problem is that imqbrokerd (the value of EXECUTABLE) is a script, and so does not show up in the process list. I have struggled to glean the proper PID from ps another way, but so far have not been successful.
    Does anyone have an example of a findproc fixed for RedHat's procps?

    I can see the imqbrokerd process when I do a 'ps -ef' on my
    RH Linux system.
    # /bin/ps -ef | grep broker
    root 22571 1 0 12:28 pts/0 00:00:00 /bin/sh bin/imqbrokerd -bgnd -au
    I tried manually stopping the broker through the
    /etc/init.d/imq script and it seems to work for me.
    # env DEBUG=1 /etc/init.d/imq stop
    Stopping imqbrokerd ... done
    How are you using /etc/init.d/imq ?

  • Lil' script to update adblockfilter, adblocking via /etc/hosts file

    hi, i've recently changed to adblocking via the hosts file (which works great btw), but i was missing  filtersetupdating like in firefox, so i've created with my limited scripting skills this one...
    # lil' script to update /etc/hosts adblock-filter
    #hosts adblock filter taken from this site...
    wget --directory-prefix=/tmp http://www.mvps.org/winhelp2002/hosts.txt
    #Backup /etc/hosts to /tmp
    cp /etc/hosts /tmp
    #standard static hosts file
    echo '# /etc/hosts: static lookup table for host names' > /etc/hosts
    echo '#' >> /etc/hosts
    echo '#<ip-address> <hostname.domain.org> <hostname>' >> /etc/hosts
    echo '127.0.0.1 localhost.localdomain localhost' >> /etc/hosts
    #add custom statc host configuration here
    echo ' ' >> /etc/hosts
    echo '###Ad-Blocking###' >> /etc/hosts
    cat /tmp/hosts.txt >> /etc/hosts
    echo '# End of file' >> /etc/hosts
    rm /tmp/hosts.txt
    enjoy!

    hosts_udate
    #!/bin/bash
    # 2012 Ontobelli for this script
    # make hosts temporal directory
    HOSTSDIR=~/.hostsupdate
    mkdir -p "${HOSTSDIR}"
    # make temporary directory
    TMPDIR=/tmp/hostsupdate
    mkdir -p "${TMPDIR}"
    # set output file
    OUTPUTFILE="${TMPDIR}/hosts"
    # set temporal file
    TMPFILE="${TMPDIR}/tmpfile"
    if [ ! -f "${HOSTSDIR}/hosts.local" ]; then
    echo "You need to create "${HOSTSDIR}"/hosts.local containing the hosts you wish to keep!"
    exit 0
    fi
    # download the mvps.org hosts file.
    wget -c -O "${HOSTSDIR}/hosts.mvps" "http://winhelp2002.mvps.org/hosts.txt"
    # download hpHOSTS
    wget -c -O "${HOSTSDIR}/hosts.hphosts" "http://support.it-mate.co.uk/downloads/HOSTS.txt"
    # download hpHOSTS Partial
    wget -c -O "${HOSTSDIR}/hosts.partial" "http://hosts-file.net/hphosts-partial.asp"
    # download hpHOSTS ad/tracking servers
    wget -c -O "${HOSTSDIR}/hosts.adservers" "http://hosts-file.net/ad_servers.asp"
    # download the pgl.yoyo.org hosts Peter Lowe - AdServers
    wget -c -O "${HOSTSDIR}/hosts.yoyo" "http://pgl.yoyo.org/as/serverlist.php?hostformat=hosts&showintro=0&mimetype=plaintext"
    # download SysCtl Cameleon hosts
    wget -c -O "${HOSTSDIR}/hosts.sysctl" "http://sysctl.org/cameleon/hosts"
    # cat entries in a single file
    cat "${HOSTSDIR}/hosts.mvps" > "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.hphosts" >> "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.partial" >> "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.adservers" >> "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.yoyo" >> "${TMPFILE}0"
    cat "${HOSTSDIR}/hosts.sysctl" >> "${TMPFILE}0"
    # tabs to space
    sed -e 's/ / /g' "${TMPFILE}0" > "${TMPFILE}1"
    # find relevant lines without comments
    grep ^127.0.0.1 "${TMPFILE}1" > "${TMPFILE}2"
    # remove duplicate spaces
    cat "${TMPFILE}2" | tr -s [:space:] > "${TMPFILE}3"
    # remove carriage returns
    cat "${TMPFILE}3" | tr -d "\r" > "${TMPFILE}4"
    # 0.0.0.0 is nicer than constantly knocking on localhosts' door.
    sed -e 's/127.0.0.1 /0.0.0.0 /g' "${TMPFILE}4" > "${TMPFILE}5"
    # remove inline comments
    cut -d ' ' -f -2 "${TMPFILE}5" > "${TMPFILE}6"
    # sort blocklist entries and remove duplicates
    sort "${TMPFILE}6" | uniq > "${TMPFILE}7"
    # remove unneeded blocked sites
    grep -Ev ' dl.dropbox.com| host_you_want_to_whitelist' "${TMPFILE}7" > "${TMPFILE}9"
    # write the user's hosts.local to head, then the blacklists
    cat "${HOSTSDIR}"/hosts.local > "${OUTPUTFILE}"
    cat "${TMPFILE}9" >> "${OUTPUTFILE}"
    echo -e "# end of file" >> "${OUTPUTFILE}"
    # move to /etc/hosts
    mv "${OUTPUTFILE}" /etc/hosts
    # delete temporary directory
    rm -r -f "${TMPDIR}"
    hosts.local
    # /etc/hosts: static lookup table for host names
    #<ip> <hostname.domain.org> <hostname>
    127.0.0.1 localhost.localdomain localhost YOURHOSTSNAMEHERE
    ::1 localhost.localdomain localhost YOURHOSTSNAMEHERE
    # YOUR PERSONAL list
    # blocked list
    Create an alias in your ~/.bashrc
    alias hu='sudo /root/.hostsupdate/hosts_update'
    Run
    # hu <enter>
    Script and cache must be located in /root/.hostsupdate or modify scrip accordingly
    Cheers.
    Last edited by ontobelli (2012-02-15 09:15:17)

  • Unable to auto start database/listener/EM on Oracle Enterprise Linux 5

    All Experts
    I have install oracle 11g on Oracle Enterprize Linux 5 successfully.
    done all post installating steps, but when i restart server oracle listener/database/EM not automatically start.
    Please guide what is wron (server dbora error: /bin/sh: :No such file or directory).
    1. Log in as the root user
    2. Edit the oratab file (SID=Y)
    3. Create a file called dbora
    4.Run chmod and chgrp on the dbor file
    # chgrp dba dbora
    # chmod 750 dbora
    6.Creat symbolic links to the dbora script
    # ln -s /etc/init.d/dbora /etc/rc.d/rc0.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
    7. add service
    # chkconfig --add dbora
    # chkconfig –list dbora
    0:off 1:off 2:off 3:on 4:off 5:on 6:off
    # ls -l /etc/rc*.d/*dbora
    # !/bin/sh -X
    # chkconfig: 35 99 10
    # description: Start and stop the Oracle database, listener, EM, and iSQLPlus
    # Change the value of ORACLE_HOMe to specify the correct Oracle Home Firectory for your installation.
    # Change the value of ORACLE to the login name of the oracle owner at your site
    ORACLE_HOME=/oradisk/app/oracle/product/11.1.0/db
    ORACLE=oracle
    PATH=${PATH}:$ORACLE_HOME/bin
    HOST="hostname"
    PLATFORM="uname"
    export ORACLE_HOME PATH
    if [ ! -f $ORACLE_HOME/bin/dbstart ]
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case $1 in
    'start')
    su - $ORACLE -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
    'stop')
    su - $ORACLE -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME"
    echo "usage: $0 {start|stop}"
    exit
    esac
    exit

    does the script work when you log on to your freshly started system, logon as root and execute /etc/init.d/dbora start?
    the script does not have to have group membership of the dba group.
    also, do not create symlinks yourself.
    by adding the service using chkconfig the script is started and stopped as indicated by chkconfig --list, no need to do additional steps like creating symlinks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I get the error message "unresponsive script" when I try to open Firefox, and then I can only delete the message by going to Task Manager.

    After I downloaded the Firefox update, when I tried to open Firefox I got the error message: "Warning unresponsive script...etc". This happens every time and the choices in the message ("continue" etc) are unresponsive. Further I can't delete the error window without going to Task Manager to end the program. The problem also disabled Internet Explorer which will now simply not load. Google Chrome is working. I assume it relates to the update since the problems (for both Firefox and IE) occurred immediately after the download.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • XSLT or Scripts (Mac -Indesign CS3)

    Good Morning Everybody,
    We are planning now to move our Journal (XML) production into Indesign CS3.
    I've been successfully (though with limitations, as I am newbie in Indesign) implemented our books productions into Indesign CS2. This has been achieved thru using XSLT and Javascript expertise.
    I've fair knowledge of XML features, like xpath, xslt, XSL, XSL:FO and Javascript though I still learning new things when it comes to use Javascripts in Indesign.
    Well coming back to my query regarding Journals in Indesign, I am writing a style sheet, which transforms the xml input with all required formatting (paragraph, character styles), data manipulations, successfully inserting the punctuations specially in references, which can imported into INDCS2.
    When it comes to informations like "Running Heads", "Journal informations, like volume, print issn, electronic issn" author infos in 2nd page onwards etc etc...In all these cases, I would prefer to use the XSLT (XML contains all these info) instead of scripts, simply because of reason, which I mentioned earlier that I am newbie in using Javascript in Indesign and there are may be some limitations of scripts in Indesign (Although thanks to Adobe for introducing XPath in CS3).
    It was pretty easy for me to tackle/automate all these issues in other pagination platform (and the template was generic) using various scripts, XML features etc, but as I said we would also like to transit few of our journals into Indesign CS2/CS3
    I've also tried to search the forum for possible answers but not very successfully. Can somebody suggest/guide how we should go about it? I don't mind to using scripts, if it is the best way of handling and developing a generic template. Or may be to look into other plug-ins, languages to make it successful.
    Apology for writing such a long details but I thought I should made it clear what I am looking for.
    Any help/guidance in this regard will be highly appreciated.
    Pankaj

    Hello,
    I am just testing my "Subscribe to this discussion by email" settings...
    Looking forward to hear from you soon.........

  • How to move the custom hooks in /etc/rc.d/functions.d to systemd

    I have a few scripts placed in /etc/rc.d/functions.d that were launched during the boot process.
    Now I moved to systemd but I have not found any documentation about how to implement those hooks in the new boot process. As far as I got I need to write customs .service files, but again I lack of infos about how..
    Can anybody teach me a bit about this or link some documentation?
    Many thanks

    Ok, I think I need some help here.
    I want to call the acpi_call kernel module to switch off the nvidia discrete card at boot. Usually I did that with
    # echo '\_SB.PCI0.PEG1.GFX0._ON' > /proc/acpi/call
    I wrote the following /etc/systemd/system/nvidia_off.service:
    [Unit]
    Description=acpi_call to switch off nvidia discrete graphic
    [Service]
    Type=simple
    ExecStart=/bin/echo '\_SB.PCI0.PEG1.GFX0._OFF' > /proc/acpi/call
    ExecStop=/bin/echo '\_SB.PCI0.PEG1.GFX0._ON' > /proc/acpi/call
    [Install]
    WantedBy=multi-user.target
    but testing with:
    #systemctl start nvidia_off.service
    #systemctl stop nvidia_off.service
    seems no effective. No output is produced but there is no effect on the power consumption which should be several watts lower.
    I also take a look at sysctl but it seems to control only /proc/sys/anything while my module is under /proc/acpi
    Any suggestion?
    thanks in advance

Maybe you are looking for

  • DVI to ADC Adapter issues

    I have a PowerBook G4 and a 17" studio display that is connected to a DVI to ADC adapter. One day I must of done something because now when I start up with the monitor connected is immediately shuts down the system. Also when I have my lap top turned

  • Flat file data sources info pack executing for long time with yellow

    I can see flat file all records 140 in above screen but i could not see data in PSA . when i am trying to see the PSA it show not data . I have tries to make status to green but still request not process to Data target .

  • Calls for business

    I am a bit confused about the ability to use Skype for unliminted calling. I am an insurance agent and I make many calls during the week to prospective and existing cliients and insurance companies . Am I eligible to use Skype for my insurance busine

  • Printing issues in CS5

    I found this thread that pretty much goes over the issues I have been having. I was wondering if this was every resolved. It looks like the last time this was addressed was May of 2011. http://forums.adobe.com/thread/634402 concerned and confused.

  • Logging for SmartView operation

    When I retrieve HFM data with SmartView on Excel spreadsheet, is there any log recording when the data retrieval begins and completed?