How to check in system(unix/windows) if it is mounted or not?

how to check in system(unix/windows) if it is mounted or not?

Hi Prasann,
how to check in system(unix/windows) if it is mounted or not?
Please elaborate your query.Meanwhile check with command df -Th
Regards,
Gaurav

Similar Messages

  • How to Check source systems in RSA1 and verify that connections are working

    How to Check source systems in RSA1 and verify that connections are working ok and how to Check Planning Area have green status.................

    Hi,
    In rsa1, go to 'Tools' and option 'Manage Source System' - the screens are self explanatory there after. To check the planning areas, go to transaction /SAPAPO/MSDP_ADMIN anc check the status of the relevant planning areas.
    Regards
    Vinod

  • How to check whether system privilege are granted

    How to check whether system privileges like 'create session' and other ones are granted for user.
    Is there any sys table where this information is available?
    Regards - Neuron

    Keep in mind select * from dba_sys_privs where grantee = 'some-user' will give you a list of privileges granted to some-user directly. To get complete list of system privs granted to a user both directly an via roles use:
    ACCEPT USER PROMPT 'Please enter user name: '
    COLUMN PATH FORMAT A90
    SET LINESIZE 132
    SELECT  PATH,
            PRIVILEGE
      FROM  DBA_SYS_PRIVS,
              SELECT  'DIRECT GRANT' PATH,
                      '&USER' GRANTED_ROLE
                FROM  DUAL
             UNION ALL
              SELECT  LTRIM(SYS_CONNECT_BY_PATH(GRANTED_ROLE,'->'),'->') PATH,
                      GRANTED_ROLE
                FROM  DBA_ROLE_PRIVS
                START WITH GRANTEE = UPPER('&USER')
                CONNECT BY PRIOR GRANTED_ROLE = GRANTEE
      WHERE GRANTEE = GRANTED_ROLE
    /Now on top of privileges granted to a user, user also has privileges granted to PUBLIC. To get privileges user receives via PUBLIC run the above script specifying PUBLIC at the prompt.
    SY.

  • How i check the :SYSTEM.FORM_STATUS is DELETE OR REMOVE

    hi master
    SIR how i check my :SYSTEM.FORM_STATUS is DELETE OR REMOVE
    please gide me idea
    thanking you
    aamir

    hello,
    As the online documentation says, :SYSTEM.FORM_STATUS can take 3 different values:
    CHANGED
    NEW
    QUERY
    There is no status for a record that has just been removed. Only the PRE-DELETE, ON-DELETE and POST_DELETE triggers fire on this record.
    Francois

  • Can anyone tell me how to check the balance on an iTunes gift card that is not yet scratched?

    Can anyone tell me how to check the balance on an iTunes gift card that is not yet scratched or activated?

    If it's not printed on the card, then you'll need to check the receipt from the purchase of the card. There's no way to check the value from the card itself without redeeming it.
    Regards.

  • How to create a pop up window while creation of the delivery note.

    Hello Experts
    How to create a pop up window while creation of the delivery note.
    As soon as we go in to delivery note creation screen in VL01N, immediately a pop up screen should be displayed on the screen containing the following details,
    For e.g.
    Str. Loc     Qty      UOM
    DE01        100        KG
    DE99          50        KG

    Dear all,
    i m having two document numbers for invoic of same types such as output type print program and smartform.
    biut the issue is im getting print preview for one invoic and for another invoic i m not getting any print preview.
    Directly the cursor comes to initial stage of vf03.
    suggest what to do
    Thanks and regarnds
    ravi

  • I have ebook in epub format. I was using it in Windows XP. However, recently I rebooted my system to Windows 7. Now I am not able to open it in Adobe Digital Edition. It gives an error saying "Document is licensed for a different user account". Can please

    I have ebook in epub format. I was using it in Windows XP. However, recently I rebooted my system to Windows 7. Now I am not able to open it in Adobe Digital Edition. It gives an error saying "Document is licensed for a different user account". Can please someone give me a solution for this. the book is expensive and i don't want to lose it. Please help.

    I have ebook in epub format. I was using it in Windows XP. However, recently I rebooted my system to Windows 7. Now I am not able to open it in Adobe Digital Edition. It gives an error saying "Document is licensed for a different user account". Can please someone give me a solution for this. the book is expensive and i don't want to lose it. Please help.

  • How to check whether a file exist in the program folder or not?

    Hi guys,
    how to check whether a file exist in the program folder or not? Let is say i recieve a file name from user then i want to know if the file is there not and act on that base.
    abdul

    Look at the class java.io.File and the .exists() method:
    http://java.sun.com/j2se/1.4/docs/api/java/io/File.html

  • How to check R3 system connected to BI system

    Hi to all,
    I am installing BI contents , But before installing the Contents , in need to check which source system (R3)  is connected to BI.
    Please can any body tell me .
    How to check it.
    Regards
    Pavneet Rana

    Hi Rana,
    In RSA1 screen select source system option in the modelling area.
    Right click on the source system(for ex: D10client100) --> select "Check" from the context menu.
    It will display message if there is any thing wrong.
    second method
    If you have authorizations you can goto SM59 Tcode: drill down the ABAP connections ->check for your source system
    double click on it
    it will take you to "RFC destination screen" here you need to click on connection test.
    IT will display the test results.
    Regards
    KP
    Edited by: prashanthk on Aug 10, 2010 6:05 AM

  • How to check the Prerequisite in windows for SAP . Is any cmd there for it?

    Please help me ......

    Hi
    Make sure you create a list of base memory parameter settings for windows.
    Go through the SAP Notes for setting the window operating system zero memory management parameters.All the buffer and memory parameter should be set correctly that can be checked through TU02 or In se38 rsparam report.
    Hope this helps!!
    Thanks and Regards
    Esha Rajpal

  • How to check if the browser window is open?

    Background:
    In my applet, I have 2 buttons: "Open" and "Close".
    When "Open" is clicked, I open a URL using:
    getAppletContext().showDocument(new java.net.URL("http://server/MyPage.html"), "MyWindow") This works fine.
    When "Close" is clicked, I want to close the previously opened browser window. For that, I am using: getAppletContext().showDocument(new java.net.URL("http://server/Close.html"), "MyWindow") In Close.html, I have used JavaScript's self.close() on OnLoad event.
    This also works fine, i.e., the previously opened browser window gets closed.
    Now the problem:
    If the previously opened browser windows is manually closed, then when "Close" button is clicked, a browser window flashes and goes off. To avoid this, I want to detect if the previously opened browser window is still open - before clicking on "Close" button. Is there a way to do this?
    thanks and regards,
    DAKAMATH

    Note that I am using self.close() in onLoad event because I am closing the same window. If the window doesn't exist, it will create (from Java) and close it (from JavaScript). So it flashes. So it is required that I need to check for browser window existance from within Java and not in JavaScript.
    thanks and regards,
    DAKAMATH

  • How to check import status in Windows??

    Hi,
    Import is running in my Wndows box.The log file is not updating from since long time. How to check the status of the import job??FYI its oracle 10g.
    And i checked from databse that.
    FYI
    ===
    Select * from DBA_DATAPUMP_SESSIONS;
    no rows selected.
    select * from DBA_JOBS_RUNNING;
    no rows selected
    select username,machine,module,sid,state,event,seq#,seconds_in_wait from v$session where type<>'IMPORT' and username='AUTOTIME';
    no rows selected
    Plz let me know.

    Hi
    use the below script two times and check the output.
    select
    substr(sql_text,instr(sql_text,'into "'),30) table_name,
    rows_processed, round((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss'))*24*60,1) minutes,
    trunc(rows_processed/((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss'))*24*60)) rows_per_minute
    from
    sys.v_$sqlarea
    where
    sql_text like 'insert %into "%' and command_type = 2 and open_versions > 0;
    KK

  • How to check the DTP status (i.e in active mode or not) for the Prior days.

    Hi SAP gurus,
    How to check the DTP status whether it was in active mode or inactive mode for the prior days ?

    Hi Aditya,
    Kindly have a look into below links,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00dbbfa9-dba2-2d10-bc80-9d6489e4b1c7?QuickLink=index&overridelayout=true
    DTP request Overall status
    Hope this helps.
    Regards,
    Mani

  • How to check when system started? Need ASAP!!

    HI,
    Guys is there a way that I can tell that when the system started and stopped at certain time? If there is, how can i check?
    Please let me know ASAP.
    Thanks,
    I will post points for sure!!

    Afi,
    Check dev_disp.old in work directory .. Towards the end you can something like  change server state from ACTIVE to SHUTDOWN .. You will get some idea from that.  Check dev_disp to see when the server is started
    Thanks
    Prince Jose

  • How do I open a "unix window" from firefox?

    I need to run some unix scripts from a firefox window. How do I do this? Thank you.

    You would have to open a terminal window if you want to run a Unix script.
    *External Application Buttons 2: https://addons.mozilla.org/firefox/addon/external-application-button/

Maybe you are looking for

  • IPhone 6 Plus bent twice

    Hi, I bought my iPhone 6 Plus 128GB on launch day and I have since had it replaced twice. The first time it had hundreds of stuck/dead pixels on the screen and the second time it was bent. Around 2 weeks after getting the second replacement, I placed

  • Content converions in JMS adapter

    Hi, I am using sender JMS adapter to convert the ; separated file coming from MQ to XI I have the source file as 000000310;   ;H;RRCVB01;20030904;143001000000512;AED;C;20030905;20030904;00186,872118;00027,224959000000512;AFA;C;20030905;20030904;00015

  • Drop Down list in table with data from database table

    Hi, I have created an interactive form in WD ABAP. In Context tab I have created the nodes as follows: ZSOHEADER node with cardinality 1..1 |-> MATERIAL node with cardinality 0..n. Under MATERIAL node there are 2 attrib. MAKTX and MATNR. I am fetchin

  • Dual displays cursor problem

    I have a new Mac Pro and I had a 27" & 24" monitor connected to the card (Display Port, not Thunderbolt). Everything worked fine. I replaced the 24" with a new 27" (Display Port, not Thunderbolt) so now I have two 27" monitors. The problem is that th

  • Horendous gps with C6, I want to throw my phone in...

    I am so freaaking sick of this phone, it is only few months old. I bought it mainly because of disposable keyboard and gps tracking. But gps just does not work. Today I am waling aroudn the city trying to get signal, because I was lost, and nothing h