Give me some guide for studying System9 from the begining

Hi All,
Could you give me some guideness for studying system9.I am a new in System9 and want to get some material in learning it from all of you.Thank you for your help
Regards,

Hi,
Go through the url given below.
http://download.oracle.com/docs/cd/E10530_01/welcome.html
You will find all the doc's of 9.x.
Regards,
Venki.

Similar Messages

  • Fdisk doesn't give an option to create a partition from the beginning

    I had a disk with a single BSD patition taking all space. To have the disk formatted with ext2 I used dd to blank it out and then tried to partition it with fdisk. There I got a weird thing:
    Disk /dev/sdb: 320.1 GB, 320072933376 bytes
    72 heads, 63 sectors/track, 137818 cylinders, total 625142448 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x015d4cc9
    Device Boot Start End Blocks Id System
    Command (m for help): n
    Command action
    e extended
    p primary partition (1-4)
    p
    Partition number (1-4, default 1): 1
    First sector (2048-625142447, default 2048):
    Setting first sector to anything bellow 2048 makes fdisk output:
    Value out of range.
    Why so, and what can I do to have a partition starting at CHS 0:1:1?
    Last edited by czarkoff (2011-07-21 09:08:37)

    I don't know why this 1MB value was choosen. I think it has to do with partition alignment and maybe leaving room for GPT or something, but 1MB is way too much for that.
    If you really want to use all the space and need only one partition, you might be able to use /dev/sdb directly without any partition table... I've never tried that though.
    However, 1MB is only 0.0003% of your 350GB disk. Do you still care?
    Edit: removed two zeroes from the decimals. Still small .
    Last edited by stqn (2011-07-21 11:11:56)

  • Give me some ideas for the project.

    Hi,folks
    I am not familiar with programming in web services. Now i have a project related to web services need to finish. I want to someone give me some ideas for the project. how can i implement the access control services. is there anyone can give me some related links for me to learn.
    Project Title: Implementing an access control service
    Project Description:
    Web services are emerging as a new approach to system construction and will make a major impact on the engineering of future business systems. They will allow a move from enterprise to inter-enterprise computing. However, with inter-enterprise computing, there are major problems with providing access to shared data, given that enterprises will not wish to share all data with partners.
    This project aims to investigate this problem by developing a prototype of an access control service that will help decide whether or not data access should be permitted. In essence, companies will outsource their access control to this service and so will not need to maintain their own access control lists for a potentially rapidly changing set of users.
    Suggested Platform: Windows or Linux
    Suggested Languages & Tools: Java

    Well, the approach I've come accross is a central server which is typically accessed indirectly from the web servers (e.g. through SOAP protocol or RMI).
    The remote server sends a user id and a password (or more likely a digest of the password), and receives a session token, basically just a random string of characters which is checked with the central server each time a secure transaction is attempted. The token will be stored in a session object, or perhaps directly in a cookie or in the URLs.
    Active session tokens are stored on the central server for comparison. This means the password doesn't have to be retained in the server.
    It's possible for the session token to be transfered if the user switches from one site to another on the same authentication server.
    Sun distributes one of these beasties, by the way, so you could take a look at their product specs.

  • Can anyone give me some documents for data cluster

    Hi,
    can anyone give me some documents for data cluster?
    ths!
    regards!

    Hi ,
    The following is a documentation on the <b>Data Cluster</b>:
    <b>Data clusters</b> are specific to ABAP. Although it is possible to read a cluster database using SQL statements, only ABAP can interpret the structure of the data cluster.
    You can store <b>data clusters</b> in special databases in the ABAP Dictionary. These are called ABAP cluster databases, and have a prescribed structure:
    <u><b>Cluster Databases</b></u> ( I have explained the cluster databse below )
    This method allows you to store complex data objects with deep structures in a single step, without having to adjust them to conform to the flat structure of a relational database. Your data objects are then available systemwide to every user. To read these objects from the database successfully, you must know their data types.
    You can use cluster databases to store the results of analyses of data from the relational database. For example, if you want to create a list of your customers with the highest revenue, or an address list from the personnel data of all of your branches, you can write ABAP programs to generate the list and store it as a data cluster. To update the <b>data cluster</b>, you can schedule the program to run periodically as a background job. You can then write other programs that read from the data cluster and work with the results. This method can considerable reduce the response time of your system, since it means that you do not have to access the distributed data in the relational database tables each time you want to look at your list.
    <b>Cluster Database :</b>
                    Cluster databases are special relational databases in the ABAP Dictionary that you can use to store data clusters. Their line structure is divided into a standard section, containing several fields, and one large field for the <b>data cluster.</b>
    <b>Creating a Directory of a Data Cluster</b>
    To create a directory of a data cluster from an ABAP cluster database, use the following statement:
    Syntax
    <b>IMPORT DIRECTORY INTO <dirtab>
                     FROM DATABASE <dbtab>(<ar>)
                     [CLIENT <cli>] ID <key>.</b>
    This creates a directory of the data objects belonging to a data cluster in the database <dbtab> in the internal table <dirtab>. You must declare <dbtab> using a TABLES statement.
    To save a <b>data cluster</b> in a database, use the <b>EXPORT TO DATABASE</b> statement .
    For <ar>, enter the two-character area ID for the cluster in the database. The name <key> identifies the data in the database. Its maximum length depends on the length of the name field in <dbtab>. The CLIENT <cli> option allows you to disable the automatic client handling of a client-specific cluster database, and specify the client yourself. The addition must always come directly after the name of the database.
    The IMPORT statement also reads the contents of the user fields from the database table.
    If the system is able to create a directory, SY-SUBRC is set to 0, otherwise to 4.
    The <b>internal table</b> <dirtab> must have the ABAP Dictionary structure CDIR.
    <b>******** Sample Program illustrating the data cluster .</b>
    PROGRAM Zdata_cluster.
    TABLES INDX.
    ******to save data objects in cluster databases
    DATA: BEGIN OF ITAB OCCURS 100,
            COL1 TYPE I,
            COL2 TYPE I,
          END OF ITAB.
    DO 3000 TIMES.
      ITAB-COL1 = SY-INDEX.
      ITAB-COL2 = SY-INDEX ** 2.
      APPEND ITAB.
    ENDDO.
    INDX-AEDAT = SY-DATUM.
    INDX-USERA = SY-UNAME.
    INDX-PGMID = SY-REPID.
    EXPORT ITAB TO DATABASE INDX(HK) ID 'Table'.
    WRITE: '    SRTF2',
         AT 20 'AEDAT',
         AT 35 'USERA',
         AT 50 'PGMID'.
    ULINE.
    SELECT * FROM INDX WHERE RELID = 'HK'
                       AND   SRTFD = 'Table'.
      WRITE: / INDX-SRTF2 UNDER 'SRTF2',
               INDX-AEDAT UNDER 'AEDAT',
               INDX-USERA UNDER 'USERA',
               INDX-PGMID UNDER 'PGMID'.
    ENDSELECT.
    ****To create a directory of a data cluster from an ABAP ****cluster database
    DATA DIRTAB LIKE CDIR OCCURS 10 WITH HEADER LINE.
    IMPORT DIRECTORY INTO DIRTAB FROM DATABASE
                                      INDX(HK) ID 'Table'.
    IF SY-SUBRC = 0.
      WRITE: / 'AEDAT:', INDX-AEDAT,
             / 'USERA:', INDX-USERA,
             / 'PGMID:', INDX-PGMID.
      WRITE  / 'Directory:'.
      LOOP AT DIRTAB.
        WRITE: / DIRTAB-NAME,  DIRTAB-OTYPE, DIRTAB-FTYPE,
                 DIRTAB-TFILL, DIRTAB-FLENG.
      ENDLOOP.
    ELSE.
      WRITE 'Not found'.
    ENDIF.
    *******run this program and see the result.
    Hope this documentation will give you an idea of data cluster.
    if useful, do reward with the points.
    Regards,
    Kunal.

  • Just got an e mail to say that my Apple ID was just used to download photoshop touch for phone for 2.99 from the App Store with a receipt number. Is this a scam for me to give my Apple ID?

    Just got an e mail to say that my Apple ID was just used to download photoshop touch for phone for 2.99 from the App Store with a receipt number. Is this a scam for me to give my Apple ID?

    No but there's a link to reset your password. Etc etc..
    This is the email I got.
    "Your Apple ID was just used to download Photoshop Touch for phone £2.99 from the App Store on a computer or device that had not previously been associated with that Apple ID.
    If you initiated this download, you can disregard this email. It was only sent to alert you in case you did not initiate the download yourself.
    If you did not initiate this download, we recommend that you go to iforgot.apple.com to change your password, then see Apple ID: Tips for protecting the security of your account for further assistance.
    Regards,
    Apple"

  • Of clans but due to shortage of space i want to delete it for some days.If i delete the app and then reinstall it after a month should i start from the beginning or cont. from where i left

    i use ipad mini with retina display 16gb i love playing clash of clans but due to shortage of space i want to delete it for some days.If i delete the app and then reinstall it after a month should i start from the beginning or cont. from where i left

    However, I originally had the kindle app on there and when he is reinstalling it comes up with my kindle account. How do we change this?
    OPen teh Kindle app.
    Tap the i at bottom right then Settings > Deregister this device.
    -> http://www.amazon.com/gp/help/customer/display.html?nodeId=200375710&#managedevi ces
    He does not have an actual kindle so I am not sure if he would be able to create one anyways.
    The Kindle app is so you do not have to use a Kindle. Yes, he can have a Kindle account and not own an actual Kindle hardware device.

  • Give me some examples for functions for read POST, write POST, modify POST

    Give me some examples for functions for read POST, write POST, modify POST, create and delete theme in forum. This functions have to be make like Remote Methods

    Give me some examples for functions for read POST, write POST, modify POST, create and delete theme in forum. This functions have to be make like Remote Methods

  • HT1473 i just updated iTunes to 11.0, but now, for some reason, i cant songs from the computer to the library, why ?

    i just updated iTunes to 11.0, but now, for some reason, i cant songs from the computer to the iTunes library. Why ?

    SOLVED:
    refer to this forum if in need: https://discussions.apple.com/message/24603547#24603547

  • CCP related: A timeout occured waiting for a response from the ECU

    Hello All,
                I had just started using ECU Calibration tool kit software. Iam using USB 8473 for my application.When I tried to run the VI after loading the *.A2L file, I see an error message saying "A timeout occured waiting for a response from the ECU ". Does anyone know how to communicate with the ECU through CCP.
            Iam pretty sure that Iam using the right cable. I also checked the address of the parameters using Get property.vi what iam trying to read, wether they are matching with the address in the *.A2L file or not.They are matching. However I was able to communicate with my ECU when I use the same device to read the data over J1939 data link, based on arbitration ID's, with the Vi's from CAN Frame to Channel Conversion Library.
        Can any pls help me out how to communicate with my ECU using CAN Calibration Toolkit software.
    -Lucky.

    Hello,
              I am sending you an attachment of the manual for the ECU Calibration tool kit . Please go through the manual it will clarify your doubt. Moreover , check for can vi's in the example finder in labVIEW. Those will help ....
    I am sending you a link which gives you some insight about the installation of  CCP command set and the use of the toolkit with the USB CAN hardware.
    http://digital.ni.com/softlib.nsf/websearch/D7DE248D07CAD00086256ED3004BAB8A?opendocument&node=13206...
    Drivers and Updates: ECU Measurement and Calibration Toolkit 2.1
    Attachments:
    can manual.pdf ‏1437 KB

  • HT4410 I have just installed Windows 7 64-bit full version Home Premium using Bootcamp and cannot get access to the internet. I installed on a Macbook Air Mid 2012 with Mountain Lion. Are there some drivers that are missing from the Windows 7

    Dear Apple. I have just installed Windows 7 64-bit full version Home Premium using Bootcamp and cannot get access to the internet. I installed on a Macbook Air Mid 2012 with Mountain Lion. Are there some drivers that are missing from the Windows 7 bootcamp install download from Apple

    It is a Total Misconception that the Support files are installed when you are installing Windows, even if the USB drive that holds them is inserted in the system when doing the Windows install.
    You must always Run the Setup.exe files from the support files or run the drivers individually once Windows has finished installing and booted to the desktop.
    Also you really need to run the Boot Camp Control Panel Applet and check for updates as not all the newest drivers for full function of all the hardware is included with the original support download. That download is basically a generic version to get the system working and without doing the updates not everything will work properly.

  • Playbook requires me to pay for support when it did not work from the beginning and they could not fix.

    lack of email app- makes this may purchase virtually useless. because
    cant bridge with my bb 9700. maybe twice after deleting from both, and rebridging, i got connections. i cant spend an hour bridging every time. since may this is unfixable. the support people cant fix it after dozens of hours. got lots.of emails from them though. asking if i was resolved. when i answered no, they asked me to do it all again. they have no fix for this.
    can type documents, but cant email them to anybody. same with excel. no way to attach documents when the bridge doesnt work.
    i am a ceo,and i am moving my entire organization off bb becuase of this.
    have spent many many hours from the beginning in may, and now they want me to pay a 129 dollar fee to get support when it has not worked right from the beginning.
    i bought an ipad today and i am absolutely blown away by how much better it is in every single way. dozens of bbs are going away now.
    slow, no.email, locks up all the time, stand by button restarts tablet, no bridging without total reload on both devices. why would i go through this anymore? it is costing my business a fortune with myself and my people trying to make the playbook work.
    we will get ipads and make more money.
    i have tried to stay loyal to bb, but after being told i have to pay for support
    when i did once get a connection through bridge, reply locked up everytime on an email. could not type.

    I would like to add my support to this comment.
    Strike 1) Bridging a BB 9700 with a PB is flaky at best. Even if you run the very latest software on both, it does not work properly. This is NOT a user issue but a programme/application issue. RIM software running on RIM hardware and O/S and NOT being able to connect properly = RIM fault.(see my other post: My Bridge connects, it exchanges data like passwords, number of unread emails and my playbook notifies me when someone calls my BB, but it does NOT unlock)
    Strike 2) All this used to work fine during the 90d grace suport period (apart from the flaky bluetooth issue that required a hard reboot of the BB whenever the connection was broken in a bad way)
    Strike 3) Now, after a PB OS upgrade (which I faithfully applied), several phone upgrades (due to another problem) and the latest Bridge application install, it all doesn't work anymore, 100 days after I bought the flipping thing. so I have a fancy ebook reader, not the productivity enhancing tool I can use on the go.
    So now I am stuck with a forum that can't help, a technical database that does not contain this support information and a broken RIM application on RIM Hardware and O/S that I paid a lot of money for. And now they want more to look at this incident????? I am sorry but if this was a problem caused by usage, configuration or any other user error, I could understand it. But this is all completely in RIMs ballpark. I have done everything right. It connects. It just DOES NOT WORK!!!!!
    As I said in my other post, an evaluation of the PB in my company is ongoing as a possible management tool by people I know quite well, as I work in the area, but my advice would definitely be to stay away until basic functionality like emails, attachments, calendars etcetera are all suitably solved and usable by the average manager with sausage fingers and no clue about bluetooth, hard reboots and who won't be able to hold down the power, + & - buttons at the same time as the fingers won't fit!!
    So RIM, get your finger out, open up an email support channel or get some qualified support people go through this forum and help those people who have shown faith in your products and who now have real problems with your software and hardware. DONT HIDE BEHIND A STUPID SUPPORT FEE - MAN UP TO YOUR PROBLEMS!!!

  • I have a 13.5 month old Ipad2, wifi only that has had problems with wifi com from the beginning. I am learning that this is not unusual for apple. Any suggestions?

    I have a 13.5 month old Ipad2, wifi only that has had problems with wifi com from the beginning. I am learning that this is not unusual for apple. Any suggestions?
    ronald1094

    Try #5.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Some songs starts on my iPod, then stop and start from the begining and play all the way through

    Hey,
    While listening to songs on my iPod Classic 120gb, some songs will start to play, after 2-3 seconds, stop and start again from the beginning and play through the entire song no problems. On iTunes the songs still plays fine no stopping or starting. All songs are random artists and songs.
    Help! its really frustrating!

    Hey andy8299,
    Do you have any other music software (i.e Limewire) installed? If so perhaps these files are not compatible.
    See this for compatible song formats:
    http://docs.info.apple.com/article.html?artnum=61476
    Hope this helps,
    Generik

  • Finding the related field for "Leave Type"  from the BI content in HR modul

    Hi good after-noon!!
    Can any one help me out in finding the related field for "Leave Type"  from the BI content in HR module?
    Regards,
    Suman.

    Hi Suman ,
       U can get the information in KTART field in PA2006 table in SAP. This field can take values like annual leave type, long service leave, study leave etc....
    Regards
    vamsi

  • I upgraded some of my apps on my ipod touch, and one of them, my candy crush app is messed up, couldn't connect to facebook, tried re-installing it, same thing. now i have to start from the begining again in candy crush. please help

    I upraded some of my apps on my ipod touch, and one of them, my candy crush app is messed up, couldn't connect to facebook. tried re-installing it, same thing happened. now i have to start from the begining again, which really *****!! please help!!

    There is nothing wrong with the OS update.
    Delete ALL your email accounts.
    Restart Playbook
    Put the accounts back and ensure they are all set with PUSH ON.  Manual (push off) will burn battery.
    Similarly delete your wifi connections and add back when required. 
    Turn off wifi is not connected to wifi. 
    Any "hunting for connection" in email or wifi will burn up battery.

Maybe you are looking for

  • How do i restore my iPod touch to Factory settings?

    Been wanting to do buy a few things in  app but got that disabled and I forgets my  Restrictions  passcode. Can someone explain step by step how i can restore my iPod Touch to the way it was when i bought it? hate to do something and  make a mistake.

  • Loss of HDV support after latest Adobe patches...

    I recently applied the latest patches that were released for AE, PPRo and a few of the other applications in the master suite and after the patches were applied I lost the abilty to edit HDV in PPRo and in AE.  In PPro, it actually grayed out the opt

  • SimpleDateFormat and French

    Hi, I use SimpleDateFormat for converting a string to Date. My input will be a String in MMM DD, YYYY format and I want the output in yyyy-MM-dd format. The piece of code I hv written works well for English, but not for French. My code:      String s

  • Xperia calendar does not open

    Got my xperia z3 compact one week ago. After syncing with my iphone 4, the calendar does not work anymore. It starts up, but closes in 1 second. I've tried several solutions (found on this platform), but still have the same problem. Pleace help!

  • Position of iconified JInternalFrame window

    Hi, I am attempting to "memorize" the position of a JInternalFrame window when it is iconified. However, if I use the standard getX(), getY(), getWidth() and getHeight() calls, it returns the original position of the JInternalFrame, as if it was deic