How do I tell a server's uptime

I have used UNIX mainly HPUX and Mac OS X for a number of years and am now using Solaris 9 and I was just wondering what is the easiest way to find out a servers uptime? I would usually use the uptime command on a Mac OS X box but am not sure that this command will work on Solaris 9. Any help would be appreciated.

Have you tried 'uptime'? ;-)

Similar Messages

  • How can you tell what type of server configuration is installed? is it j2ee or not?

    Before I run an updater, how can I tell if the server is a
    j2ee server configuration or a "regular" server configuration? Its
    on on Linux os...

    My "Settings Summary" shows;
    Server Product ColdFusion MX
    Version 7,0,0,91690
    Edition Enterprise
    Serial Number blah-blah-blah
    Operating System UNIX
    OS Version 2.6.15-1.1833_FC4smp
    JVM Details
    Java Version 1.4.2_05
    Java Vendor Sun Microsystems Inc.
    Java Vendor URL
    http://java.sun.com/
    Java Home /opt/coldfusionmx7/runtime/jre
    Java File Encoding UTF8
    Java Default Locale en_US
    File Separator /
    Path Separator :
    Line Separator Chr(10)
    User Name nobody
    User Home /
    User Dir /opt/coldfusionmx7/runtime/bin
    Java VM Specification Version 1.0
    Java VM Specification Vendor Sun Microsystems Inc.
    Java VM Specification Name Java Virtual Machine Specification
    Java VM Version 1.4.2_05-b04
    Java VM Vendor Sun Microsystems Inc.
    Java VM Name Java HotSpot(TM) Server VM
    Java Specification Version 1.4
    Java Specification Vendor Sun Microsystems Inc.
    Java Specification Name Java Platform API Specification
    Java Class Version 48.0
    --> and lots more, but no mention whether its a J2EE
    configued server or not...so should I assume its not a
    regular/non-J2EE server?
    I ask because the Updaters instructions show a BIG difference
    depending on which type it is to be updated...thanx...Matt

  • Hello, How do I tell sql+ to spool output file from windows to Unix server?

    Hello, How do I tell sql+ to spool output file from windows to Unix server?
    I am new to SQL+ and just learned how to spool the file. But file is saved in my local windows enviroment and since it's 2GB in size...I want to spool it directly to another remote unix server.
    Pls answer in detail... I have been to most of the thread and didn't see relevant answer to above question.
    Am I suppose to develope some script which FTP the spool file directly to the server I want to
    or
    i Have to use UTL_FILE Package ?
    Thanks for reply

    You may not be able to...
    SQL*Plus can only spool to the local machine. If you have mapped a directory on the Unix server from your Windows machine, you can specify that directory in your SPOOL command.
    You could telnet to the Unix server, run SQL*Plus there, and spool the file to a local (Unix) directory.
    If the Unix server is also the Oracle database server, you could use the UTL_FILE package rather than using SQL*Plus to spool a file.
    If the Unix server is also an FTP server, you could also FTP the file from your local machine to the server.
    Of course, I would tend to re-examine a requirement to regularly generate a 2 GB text file. It seems likely that there is a better way...
    Justin

  • How can I tell my current Weblogic server version and Service pack

    Hello,
    I was wondering how can I tell what my current
    weblogic server version is and what service pack
    it is at.
    Thanks.

    use 'java weblogic.version'
    ensure weblogic.jar is in the classpath

  • How can I tell if I have BizTalk server 2013 or 2013 R2

    I have the developer version intalled on my machine.  How can I tell if it's 2013 or 2013 R2?  In looking at the version it states Version: 3.10.229.0
    thank you.
    jRenae.s

    Thank you Maheshkumar,
    I also looked in programs and features.  But wasn't sure if it would be obvious just by at the name - it shows 'Microsoft BizTalk Server 2013 Developer Edition'.  
    So if it was R2 would it show 'Microsoft BizTalk Server 2013 R2 Developer Edition'?
    Jean
    jRenae.s

  • How to start Oracle Application Server 10g on Linux

    Hi,
    I have installed the Oracle Appliacion server and Infrastructure server on Linux. Both I have installed under with Diff. folder
    Can some one please tell me how to start / stop Appliacion server and Infrastructure server on Linux
    We are going to use the these with Oracle EBS 11.5.10.2 .
    Oracle EBS 11.5.10.2 installed in the same Linux server under diff. folder
    Can some one please guide me.
    Thanks,

    You can do as rizla said or go another route.
    We setup profiles to use for all of the oracle homes. Then in the scripts we call the profiles. Easier to migrate and manage in my opinion if you have multiple oracle homes. You can then use profiles when ssh'd into the boxes, too. Both ways will work.
    Example:
    Script which you can chkconfig.
    #!/bin/sh
    # oracle_collabInfra
    # This shell script takes care of starting and stopping Oracle Collab Infra instance.
    #chkconfig: 345 96 14
    # Source function library.
    . /etc/rc.d/init.d/functions
    RETVAL=0
    start () {
    echo $"Starting Collab Suite on the Infra instance..."
    echo $"Starting Listener..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; lsnrctl start"
    sleep 10
    echo $"Starting Metadata Repository..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; sqlplus '/ as sysdba' <<!
    startup;
    exit;
    sleep 10
    echo $"Starting Enterprise Manager Application Server Control..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; emctl start iasconsole"
    sleep 5
    echo $"Starting Infra OID and OC4J_Security processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=OID"
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=OC4J_Security"
    echo $"Starting Infra HTTP_Server processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl startproc process-type=HTTP_Server"
    return $RETVAL
    stop () {
    echo $"Stopping Collab Suite on the Infra instance..."
    echo $"Stopping all Infra OPMN managed processes..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; opmnctl stopall"
    sleep 5
    echo $"Stopping Enterprise Manager Application Server Control..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; emctl stop iasconsole"
    sleep 10
    echo $"Stopping Metadata Repository..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; sqlplus '/ as sysdba' <<!
    shutdown immediate;
    exit;
    sleep 10
    echo $"Stopping Listener..."
    runuser - oracle -c ". /home/oracle/.collabInfra_profile; lsnrctl stop"
    return $RETVAL
    restart () {
    stop
    start
    RETVAL=$?
    return $RETVAL
    # See how we were called.
    case "$1" in
    start)
    start
    stop)
    stop
    restart)
    restart
    echo $"Usage: $0 {start|stop|restart}"
    RETVAL=1
    esac
    exit $RETVAL
    profile:
    export ORACLE_BASE=/opt/oracle
    export ORACLE_HOME=$ORACLE_BASE/collabInfra
    export ORACLE_SID=orcl
    export TMP=/tmp
    export TMPDIR=/tmp
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    export PATH=/bin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/kerberos/bin:/usr/local/bin:/usr/X11R6/bin:$HOME/bin:$ORACLE_HOME/bin:$ORACLE_HOME/opmn/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/backup_restore
    unset USERNAME

  • How can I tell what is "Auto Launching"

    User's (me) tech background:
    Fairly technical user here, but getting pretty rusty. In a past life (late '90s) I was a network administrator as well as server admins for NT 4, Novell (up to 4.11), AIX, and HP-UX servers. Used to be really good at a command prompt ($ or #) in AIX and HP-UX as well as MS DOS. I do have ROOT enabled on my Macs and I am not afraid to use it. However, I know how severe the consequences can be (trashed a customer's AIX server once using a -R switch in the root directory), so I am extremely cautious and must be confident of the instruction. Can probably fix most anything with some guidance........
    Here is the problem........ I have recently developed an error on boot, say within the last couple of weeks, where it tells me that some Vista application won't run because VM Ware will not initialize. The problem is VM Ware is not loaded on this computer (15" MBP model 8.2, i7 processor, 16MB of RAM, OS 10.7.4........ bought as a "refurb", never had a problem, have used this workstation for several months now). Boot Camp is not configured on this machine either. Nothing is in the Dock that would knowingly trigger this. When I go into System Information, I find nothing set as a "Startup Item" (screen shot attached) , making me think that I am looking in the wrong place. Where should I be looking?
    Interesting enough, when I go to System Information, and look under "Applications", I do see a lot of Vista items, including apps from an older MBP that I do not connect to (on same network, they have "rights" to connect, I just never do as there is nothing on there I need). I have attached a screen shot of this as well.
    Please, someone, can you give me some advice here?
    How can I tell where this auto loading of this Vista app is coming from
    How do I get rid of it
    Why did it happen "suddenly"?
    Can I go into System Info/Applications and delete any Vista or VM Ware apps?
    If I cannot do this via "System Info" can I remove (rm OR mv) the files from whichever system directory stores this data?
    This is puzzling and quite concerning. I would be deeply grateful if there is a "Yoda" out there that knows how to fix this.......
    Thanks in advance,
    Bill

        Managing your data usage is very important Bag02231958. I would like to thank ttipgem for the great suggestion to see what is using data on your phone. However, when you access the internet, social media apps, stream data, videos, music, etc. that uses data on your phone. Unfortunately, we do not have a list of what specifically is being accessed on the device to incur data. You do have the ability to view data records and time frames online via My Verizon http://bit.ly/xB4iTc
    Thank You,
    MichelleL_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • How can I set BPEL server enviorment and create BPEL domain?

    Without use the http console, how can I set BPEL server enviorment and create BPEL domain?
    When I try to use API like below
    import com.oracle.bpel.client.Server;
    Server s = new Server(ServerAuthFactory.authenticate("oracle","localhost"));
    But I always got four exceptions and one warning like below:
    java.io.FileNotFoundException: C:\Workspace\WOSEDISystem\BPEL_Domain_Creation\config\security.properties (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Workspace\WOSEDISystem\BPEL_Domain_Creation\config\ejb.properties (The system cannot find the path specified)
    Warning: unable to read transaction.interoperability config property
    java.io.FileNotFoundException: C:\Workspace\WOSEDISystem\BPEL_Domain_Creation\config\security.properties (The system cannot find the path specified)
    java.lang.Exception: Failed to create "ejb/collaxa/system/ServerBean" bean; exception reported is: "javax.naming.CommunicationException: Can't find SerialContextProvider
    Is it right to use com.oracle.bpel.client.Server like this, please help me.
    Best regards,
    Vita

    Anyone can help me? Because I need deploy BPEL process on production server, so I need the Java funtion to create domain. Thank you very much if you can tell me the correct method of using com.oracle.bpel.client.Server API.

  • How can I tell if Time Machine is backing up my external HD?

    Mac Newbie here. I just have a quick question: I have two external HD hooked up to my 2012 iMac, one holding media files (not iTunes, just miscellaneous avi and mkv type files) and the other serving as the backup drive for use with Time Machine. When I first hooked up the media external HD, the OS asked me if I wanted to use it with Time Machine. Interpreting that as a request to use it as the backup drive, I replied "no." Then when I hooked up the second external HD, I replied "yes" when asked if I wanted to use it with Time Machine.
    Since that time, Time Machine has been running smoothly, but I'm not sure if it is backing up both my internal HD and my external HD #1 used for media files. When I open Time Machine using Launchpad, it shows me a picture of Finder listing all my different hard drives, but only in the "now" timeframe. When I go back a few backups, the external HD used for media files is grayed out. Does that mean it has not been backing up my external HD files? If so, how do I tell it to include that external HD in the backup process?
    Note that I am trying to backup contents of one external HD (including my internal HD) to another - the internal HD has 1 TB, the first external HD has 2 TB, and the second external HD has 3 TB (this is the one I'm using as the backup drive). So I think I should be ok from a space standpoint.

    Open System Preferences > Time Machine > Options and see Excluded Items. If the external drive is there, it's not being backed up

  • How to configure trex name server

    hi all
      while creating index i am getting the error
    Index could not be created; creating index failed: TREX Name Server (including back-up servers) is down or not accessable. (Errorcode 7217)
    for the above error i need to configure the trex name server using  TREX Configuration in the J2EE Engine  in j2ee visual administrator .
    can any one tell me the clear path that where to configure the above and where j2ee visual administrator installed how to configure the name server
    awaiting for replies
    regards
    ganesh

    Hi Ganesh,
    In order to access the Visual Administrator, go to Start > Programs > SAP J2EE Engine > Visual Administrator. After you login, you will see 2 nodes i.e. Dispatcher and Server. Expand the Server node. Then go to "Services" and expand it. Then go all the way down to "TREX Service". Then on the right hand side, go to the property "nameserver.address" where you will key in "tcpip://<nameserver>:<port>". Then hit "Update" and click on the "Save" button. Then when you go to TRex Monitor, you should be able to see the Name Server running. Hope this helps.
    Thanks,
    Sri
    P.S Please rewards points if you find this helpful. Thanks.

  • How can I tell if my disks are EagerZero or Lazy Zero?

    I have an Esxi 5.1 environment with 4 or 5 server VMs
    Three of the servers are showing that the disk provisioning type was 'Thick Provisioned Lazy Zeroed'
    As an example for one disk for a Windows 2008 Server, In Browse Datastore I am seeing...
    size =  102,400.00KB
    Provisioned size =  104,857,600.00KB
    This looks like it might be around 1/10th of the size it should be as a Thick provisioned disk file.
    In the datastore browser I can right click and select inflate but it says 'Disk is not thin-provisioned'
    I used PuTTy and issued the following command on the disk...
    vmkfstools --eagerzero /vmfs/volumes/DatastoreName/MyVMName/MyVMName.vmdk
    and this ran through right to 100%
    However, I am still seeing the parameters set out in paragraph one above - 'Thick Lazy' and the same size/provisioned size values.
    Does anyone know how I can tell if the disk really is still Lazy or has it changed to Eager and just not being reported properly.
    Many thanks in advance
    PS - the reason I am changing to Eager is that I am told it will give slightly better performance on a server.  There are two servers I would like to change when I got to the bottom of this issue - one an SQL server and one a dataserver with lots of files being stored regularly on there.

    vickyvision2020 wrote:
    Disk type can be easily verified from VI client. Right click on VM>>Edit settings >> <Click on the disk that you want to know>  right hand side you will get the details on disk provisioning type:
    Thanks for the reply.
    In the VMWare vSphere client>>VM>>Edit settings >> it says 'Thick Provisioned Lazy Zeroed'
    I ran the 'eagerzero' command from within vmkfstools and it said it converted 100%
    The screen show below from the Datastore Browser shows the hard disk is 100Gb yet it seems to suggest that it only takes up 100Mb.  I thought that any of the Thick disk options would show a disk of 100Gb which just adds to my confusion on this subject.

  • How can I tell if my local webserver is configured to accept https requests?

    I have phpMyAdmin on my localhost server.
    How can I tell if the localhost server is configured to accept https requests? Or is that unnecessary on a localhost server?
    Below is the info from the phpMyAdmin home page:
    Server: 127.0.0.1 via TCP/IP
    Server version: 5.0.81
    Protocol version: 10
    Apache/2.2.20 (Unix) mod_ssl/2.2.20 OpenSSL/0.9.8r DAV/2 PHP/5.3.6
    MySQL client version: mysqlnd 5.0.8-dev - 20102224 - $Revision: 308673 $
    PHP extension: mysqli
    phpMyAdmin
    Version information: 3.3.1
    Many thanks for information and advice concerning this.
    Best,
    Sheley

    Well, for one, by definition, localhost can only ever be accessed from the machine itself. It doesn't get any more secure than that.
    However, just because you're hitting the site on localhost that doesn't mean that Apache isn't also listening for connections on other IP addresses. In fact, by default, Apache will listen on all IP addresses configured on the machine.
    Therefore you might want to look a little deeper.
    You can see from the phpMyAdmin output that Apache is configured to support HTTPS, but that only tells you whether apache knows how to speak HTTPS, not whether the current connection/request is using HTTPS.
    The shortest, simplest answer to your question is to try. If you can hit https://localhost/ then, yes, Apache is listening and responding to HTTPS requests. If it doesn't respond then it isn't.
    Or dig through the configuration files, but I'm guessing if you knew how to do that, you wouldn't be asking the question.

  • How can I tell if my computer is using ethernet or wireless for downloads?

    Hi,
    My computer is hooked up via ethernet to my router (base station) which is connected to my DSL modem, and I also have my Airport on because I have extended my network with an airport express so I can stream music to my stereo across the room using iTunes.
    I've noticed in the Airport menu that my computer is connected also to my wireless network which I use for getting online with my iPad.
    Can I assume that my computer will use ethernet and NOT wireless for accessing the internet, downloading files, etc?
    How can I tell which network connection is being used? Are there tools for monitoring the network that would allow me to easily determine if a particular download is going over the ethernet or the wireless connection?
    Clearly, I want to use the hard line ethernet connection for everything and use the wifi only for my streaming music function for speed purposes...
    Thanks!!!!
    Elisabeth

    Hi,
    Internet is served on the priority basic from the System Prefrences Network pane.
    If ethernet is on top you getting it from ethernet if Airport and so on...
    So depending on internet speeds set the priority to access fast internet speeds.

  • Script to find duplicate index and how can we tell if an index is REALLY a duplicate?

    Does any one have script to find duplicate index? and how can we tell if an index is REALLY a duplicate?
    Rahul

    One more written by Itzik Ben-Gan
    The first query finds exact matches. The indexes must have 
    the same key columns in the same order, and the same included columns but in any order. 
    These indexes are sure targets for elimination. The only caution would be to check for index hints. 
    -- exact duplicates
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols,
    (select case keyno when 0 then colid else NULL end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by colid
    for xml path('')) as inc
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'exactduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and c1.cols = c2.cols
    and c1.inc = c2.inc;
    The second variation of this query finds partial, or duplicate, indexes 
    that share leading key columns, e.g. Ix1(col1, col2, col3) and Ix2(col1, col2) 
    would be considered duplicate indexes. This query only examines key columns and does not consider included columns. 
    These types of indexes are probable dead indexes walking. 
    -- Overlapping indxes
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'partialduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and (c1.cols like c2.cols + '%' 
    or c2.cols like c1.cols + '%') ;
    Be careful when dropping a partial duplicate index if the two indexes differ greatly in width. 
    For example, if Ix1 is a very wide index with 12 columns, and Ix2 is a narrow two-column index 
    that shares the first two columns, you may want to leave Ix2 as a faster, tighter, narrower index.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to change your Administration Server password when you're locked out

    How to change your Administration Server password when you're locked out
    The Netscape server products are all managed by a single administration
    server, which gives you a web forms-based interface you can use to
    configure them, start/stop them, check their logs, and so forth.
    <P>
    There are three levels of protection that keep the general public from
    being able to get into your administration server and mess up the
    configuration of any Netscape servers you have installed:
    <P>
    <OL>
    <LI> <B>Obscurity:</B> Your administration server can run on any port you'd
    like (usually something between 81 and 30,000), so if an attacker
    doesn't know what port to find your admin server on, he can't get
    into it.<P>
    <LI> <B>Host restrictions:</B> You can tell your admin server to only allow
    connections from specific hosts, and to reject all other hosts.
    <P>
    <LI> <B>Password protection:</B> Even if a user connects to your admin server
    from a valid host, he won't be allowed to get into even the first
    page unless he presents a valid username and password.
    </OL>
    <P>
    If you, the legitimate administrator of your web server, are unable to
    access the administration server (if you forgot your password or the
    admin port number or if you accidentally locked your own site out),
    then here is how to get past each of these levels of protection:
    <P>
    <OL>
    <LI> If you don't remember what port your administration server is
    running on, just look in your "ns-admin.conf" file, which is in
    the "admserv" directory under your Netscape server directory.
    (For 1.x web servers on Windows NT, run "regedt32" and go to the
    "HKEY_LOCAL_MACHINE\SOFTWARE\Netscape\Administration" section).
    You will see a "Port" entry there that specifies what port your
    admin server is on. You can change this value if you want your
    admin server to run on a different port, but make sure you restart
    the admin server after you change the value.
    <P>
    <LI> If your admin server is complaining "Unauthorized host" when you
    try to connect to it, then you can open it up to all sites by
    going into the "ns-admin.conf" file or the "Administration"
    section of your NT registry, as described above, and deleting the
    lines for "Hosts" and "Addresses" (either one of those might not
    be present) then restarting your admin server (on Unix run
    "stop-admin" then "start-admin"; on NT go into the Services
    control panel and stop/start the "Netscape Administration" or
    "Netscape Admin Server" service). You will then be able to get
    back into the admin server, where you can then try new settings
    for your host and address restrictions if you wish.
    <P>
    <LI> If you have forgotten the password to your admin server and now
    you can't log into your admin pages, all is not lost! Go into
    your "ns-home" directory, and into the "admserv" directory under
    that. You should find an "admpw" text file containing a simgle
    line of text, something like this:
    admin:lnOVeixulqkmU
    The first part of that line is the name of your admin account
    (usually just "admin"), and the second part is your admin
    password, encrypted. Edit this file to remove the encrypted
    password so that your file looks like this:
    admin:
    Then shut down your admin server, bring it back up again, and log
    into your admin server but don't give any password. It should let
    you in, at which point you can then go to the appropriate
    configuration page to set a new admin password, and then you're
    back in business.
    </OL><P>
    Note that because it is so easy to change the admin password this
    way, it's good to periodically make certain that your admin
    password file and your web server's configuration files are not
    left world-writable, and that only trusted people have access to
    them. (By default they're not world-writable, but it's good to
    make sure of this from time to time.)

    If you mean that yu forgo the password for yur encrypted backup then you can only:
    Warning: If you encrypt an iPhone backup in iTunes and then forget your password, you will not be able to restore from backup and your data will be unrecoverable. If you forget the password, you can continue to back up and use the device, however you will not be able to restore the encrypted backup to any device without the password. You do not need to enter the password for your backup each time you back up or sync.
    If you cannot remember the password and want to start again, you must perform a full software restore and when iTunes prompts you to select the backup from which to restore, choose set up as a new device.
    Above from:
    http://support.apple.com/kb/HT4946

Maybe you are looking for

  • Losing formatting when opening existing Pages '09 document

    Trying to find answer as to why my Pages document shows correctly when viewing preview (spacebar) but when open document in application Pages it loses some of its formatting especially picture size/position throwing all rest of pages out. It doesn't

  • No byte[] in WLS 7.0?

    Hello, when reading the "WebLogic Web Services Known Issues" for 7.0 final, I see that Change Request Number 75663 tells me that "WebLogic Web services do not correctly handle SOAP arrays of schema types which map to byte[]." Does this mean that you

  • Help for  iStore implementation

    hello all, I hv 3 yrs of work Ex in purchase domain. I am frasher in oracle as functional counsultant. can any one provide me istore related documents?....and can any one tell me how to study istore module (from implementation view)? thanks Sujata

  • Can you still down load Lightroom 3?

    I currently have Lightroom 3 which I'm happy using and don't want to upgrade to version 4 at the moment.  Previously I've have it loaded on my PC.  I'm just about to buy a MacBook Air which doesn't have a CD drive.  2 questions: Can I use my lightroo

  • Will the deskjet 1010 work with windows 10?

    I'm going to upgrade to Windows 10, just checking to see if my Deskjet 1010 is going to go there with me. Currently running this on Windows 7. The Deskjet 1010 is perfect for the little bit of printing I do, I don't want to change printers if I don't