بتاريخ: 8 مايو 200520 سنة comment_35459 السلام عليكم و رحمة الله وبركاتةسؤالى هوما هو الفرق بين oracle application DBAoracle database administratorاعرف تمامامن المبدا انه لكى يكون الشخص oracle application DBAلابد ان يكون oracle database administratorلا اعنى ان يكون OCP و لكن على الاقل عنده المعرفى الكافيةفهل من جديدو يا ريت اى كتب عن system administration in oracle applicationsو شكرا جزلا تقديم بلاغ
بتاريخ: 12 مايو 200520 سنة comment_36002 Difference between an Apps DBA and a Regular DBAThe question is often raised: What is the difference between a regular Oracle DBA and an Apps DBA? While the answer may sound trite, the difference is what you make it. There are many different thoughts on this from many different people. Some people suggest that there is no difference and to an extent that is probably true. In reality, Apps DBAs are regular DBAs who have to remember and be concerned with a variety of additional influences. Further, Apps DBAs will likely work closer with other people, or teams of people, with whom they may never have been involved, before.You, the Applications DBA, will be responsible for managing, sizing, maintaining, and tuning the database (just like any DBA). Your Apps database is an OLTP (online transaction processing) system. Along with the other responsibilities, go all of the wait and lock concerns that you would have in any transactional system. Oracle E-Business Suite also has some fairly hefty batch jobs (e.g., some creating reports, others bringing data in from outside sources, and still others doing massive calculations on the existing data). The scheduling and specifics of these jobs are not going to be under your control. You will have little to say about when they are kicked off or run. These jobs will be run at the discretion of the finance or accounting departments; therefore, it is important to maintain a harmonious working relationship with them and an open line of communication. Oracle E-Business Suite is also, potentially, a Business Intelligence System (BIS) and can have many of the same kinds of reports run against it that could be run on a data warehouse. After all, you are dealing with your company's financial data over time. This will be the kind of information that the executives want to run historic reports, trends, and what if scenarios on. Tuning will become a problem at some point for you. These factors combine to bring many sizing and performance concerns that go along with a reporting and a batch environment, an in-depth analysis system and a transactional system. What follows is a list of 11 things that you may want to consider as part of what it means to administer Oracle Applications and just a few of the jobs that you will have as you proceed through the often thorny environment that you now find yourself.Get familiar with Concurrent Managers; there are no friendly manuals that you can read to help you with these or any in-depth documents to help. Chapter 9 — Installation and Migration will help you along the way and will point you at some other information that may be of assistance.Remember that, while you run mostly a transactional system with the end users entering row at a time information through the interface, you are not dealing with a true OLTP system. When a batch gets kicked off through a concurrent request is not usually under your control. An end user from the finance department may decide when to submit a payment batch and not realize that there may be ramifications to that decision. The more modules that you implement and the more people who have reason to submit a resource intensive batch process, results in a greater impact that these processes will have on your system. Excellent communications and coordination between you and all of the stakeholders will make your life easier.Never apply a patch to the production databases unless you have tested it multiple times and get user acceptance testing done and end user sign off that the patch in question both fixed the problem that it was meant to fix (for a patch that is applied to fix a problem) and that it did not have any unforeseen side effects or break anything in the system (for all patches that are applied). Remember, it is quite likely your fault if a patch breaks production.Document all the patches: the day applied, the reason for applying, the errors that they were supposed to solve, and the errors created after applying. Keep the logs of all the patches and do not ever erase them; Oracle will ask for that patch log after maybe six months when one of your current patches bombs. More on patch documentation and patching can be found in Chapter 10.Remember that Oracle Applications is heavily indexed; rebuilding the indexes periodically will improve performance significantly. There is a Concurrent Process that will help you with performing this action. Try to schedule it for a time when there is a minimum of users on the system.Monitor the rollback segments. This is probably one of the most important and one of the trickiest parts. This is particularly true if you have not implemented Automatic Undo Management. (See Chapter 2 — 11i, 8i, and 9i New Features for more on this Oracle 9i feature.) If, for example, a Concurrent Program fails because it is not able to allocate rollback segments, the whole program is rolled back and this can clog the CPU (central processing unit) because of the extreme backup of other programs in the concurrent queue. Often, this will leave behind interim tables and indexes that have to be cleaned up carefully and manually. Extreme care must be taken with the interim tables as other programs may reuse them for reporting, posting, purging, or other functions.Never attempt to add additional indexes for performance without first asking Oracle Support. It is Oracle's application and Oracle Support should know better than anyone if the addition of your proposed index is liable to make the core application perform worse. If you do attempt some changes, make sure that you document exactly what you did. The next patch you apply would quite probably identify the changes that you made and replace them with the canned functionality, placing you back at square one.Understand how patch application works. You will be spending a great deal of time involved with some portion of patching: from planning which patches to apply, to acquiring the patches, to applying the patches, to testing and documenting post patching, just in time for the next time you start planning which patches to apply next. Chapter 10 — Patching will help with this.Know that there will be many invalid objects any time that there are any changes made to the database. Any time you do anything that might have an affect on the database, check the number of invalid objects, and periodically run utlrp to recompile them. Utlrp.squ, located in the Oracle Home Directory's rdbms/admin subdirectory, is responsible for compiling invalid objects. When run as the 'SYS' user, it attempts to recompile all invalid objects to all schema owners. Anytime that you encounter a new error, check for invalids and recompile the database first before initiating an iTAR (Internet created Technical Assistance Request).Understand Alerts. Especially understand Periodic and Event Alerts and understand how they differ from database triggers.Remember, being an Apps DBA is pretty simple. With the exception of setting up printers (which can be tricky due to initialization settings) everything is fairly straightforward and you will learn quickly. You will soon become at ease in your environment.You will create test and development databases (maybe more) and you will keep them refreshed by copying (cloning) the production database. How many instances you choose to create and maintain is enterprise dependent. Much of the decision on exactly how many databases will depend on what the business dictates. Minimally, I suggest having at least three complete and separate environments and four complete sets is even better. First, have a development environment where your developers can develop custom reports and custom PL/SQL (Procedure Language extension to Structured Query Language) packages to support those reports. This environment can be refreshed on a move up cycle or whenever the developers feel that the data is no longer representative of what is in production. This is likely the first environment into which to apply patches. Next, have a test environment where you apply patches before final user acceptance testing and user signoff. Test should be as close as possible to production data before a patching cycle starts, so that the end users can test with data as fresh as possible. Finally, you will have your production environment. Production is self-explanatory. Optimally, you will have a fourth environment: I will call it patching (if you installed the vision environment, you can use this for the patching environment). Patching is where you can apply patches and fix them when they break without having any impact on any of the users of the system. This is a place you can consider your playground. You can test out changes to the system without worrying if your changes are breaking anything or if they are having ill effects on what anyone else is doing.Cloning (see Chapter 11) is making an exact duplicate environment (both the applications layer and the database layer) against which patches are applied and tested, reports are written and tested, upgrades start and are tested, and in which problems are fixed and the fixes tested all before any of these goes to production.Patches, both ORACLE Applications and RDBMS (relational database management system) patches, will need to be applied and tested. These should start in the development database (unless you have one just for patching) and migrated to test and later to production. You will need to have a handle on how to patch, patch management, and version control of all of your individual systems.Further, in your capacity as applications administrator, you can likely find yourself involved in the following roles:Oracle Applications DBACapacity planning and sizing the hardwareArchitecture and design of the Applications systemInstallation of Applications 11i with respect to planned architectureInstance managementCloning Applications 11i and scriptsSplitting and merging the nodes, single node to multiple node and vice versaWorkflow installation and configuration and setting up test workflowOracle WebServer (OWS), Oracle Application Server (OAS) tuningTuning ApacheApplication security, post-implementationTuning Concurrent ManagersTuning application UNIX server and identifying issuesTuning scripts and other Application troubleshootingFinally, installs and upgrades will be your responsibility, as well as making sure those upgrades and installs are supported. Oracle Support does not support many release configurations and if you choose to install one of these configurations (e.g., 11.5.8 with a Version 8.0.6 database), you will likely not be able to rely on Oracle Support if something goes wrong. Oracle Support's solution will be to upgrade to a supported configuration. Always make sure that any installation or upgrade is a supported combination. This means the operating system (OS) version with the middle tier, the OS version with the database, and the middle tier with the database. Along with dealing with upgrades, you will need to know how to handle any customizations that were done to your system, so they can be handled in the upgrade process. This includes program units, interim tables, custom reports, and custom forms.You also need to determine the timing and type (e.g., hot, cold, Recovery Manager, or any combination) of backups and when you can practice your recoveries. Remember, if you do not know (have not practiced) that you can recover using your backup method of choice, you do not have a backup and recovery plan. A backup is worthless if you cannot recover from it.Most likely, you will be responsible for starting and stopping the Concurrent Managers and managing their functionality and performance. It may be your responsibility to create request sets for users to use to submit reports and batch jobs.The help desk will probably turn to you when it is alerted to a problem. You will be the second tier support.You may be called on to administer other pieces that are used in conjunction with your Apps install. These may include Discoverer, Forms and Reports, and other software used inhouse that interfaces with Oracle E-Business Suite. When custom programs, forms, or reports are created or altered, adding these to the system and registering them with Applications will also become something that you do. Again, this is where you will have to have a handle on versioning and version control.Interim tables, their functions, and what they can and should do are also things that you will have to have a hand in, at some point. Interim tables are the means by which you get external data into your financials database from outside sources. These are the only tables that anyone should ever need to touch from a design standpoint.Applications' middle tier and the database are intricately connected; that is part of what makes it such a powerful and complex piece of software. What affects one piece often affects others and usually affects the whole. If there are server problems on the database tier, they can become painfully obvious to your users accessing the Apps front end. If a form is not performing correctly, you could see performance issues on your database. Many times, following a patch installation, completely untouched forms and reports will change how they are acting or cease functioning. Concurrent Managers, regardless of what tier they reside on, can create their own sets of interesting problems.You will also need to have a working knowledge of Oracle's Apache Server and the iAS Suite and their foibles on your OS. JServ, Apache, and the internals to iAS that come with Oracle Apps are what allow your users to access your system cleanly.There are Forms and Reports Servers running on the middle tier. Those may become something that you need to maintain during a patch cycle or upgrade, if at no other time.Metalink (http://metalink.oracle.com) is an invaluable tool that you will turn to on a regular basis. You will become better and better at finding notes and solutions to the problems that will be laid at your doorstep. This is where you will download patches, research problems, and find considerable documentation and white papers. It will also be a source of much frustration, because an iTAR may be assigned to a very good analyst (which will make solving problems simpler) or to someone who will run you around in circles and add greatly to your frustration (which will likely make you wonder how any problem ever gets solved). Bear with it; in the end they are one of your best resources. Chapter 11 — Cloning will give you more information on what is involved in dealing with Oracle Support.To better serve your end users, you will have to gain some basic understanding of the underlying structure and architecture. If there are other systems feeding your installation, you may need to understand where the data comes from and what could, potentially, go wrong in the transfer. You do not have to know everything about accounting and FASB (Financial Accounting Standards Board), but it does help to know things like AR is accounts receivable (money that is coming into your company), AP is accounts payable (money going out), and GL is general ledger (the accounts that the money goes into and out of).If you are dealing with any Windows version as your middle tier, you will need to have a basic understanding of registry entries and how that can affect you and the differences in how path and environment variables are set. If you have multiple instances running on a Windows machine, the complexity of your install will be increased, the software components that come into play are increased, but some of the solutions to really weird problems can be simpler.Besides you, who is responsible for what? It will be helpful to your organization to have a help desk to which the functionals and other technical people can turn when there is a problem, a point of contact. If you have one of these, it can add layers through which problems need to be routed that may be time consuming, but it also might be a way to centrally track if you are having ongoing similar types of problems and the resolutions to them.System administrators (sysadmins) will most likely install, upgrade, or replace the OS and any of the hardware on which the pieces of your installation reside. They will monitor disk usage and physically perform the backups. A combination of administrators may also maintain and manage the physical printers and print queues. Although, defining those printers to the applications may be your responsibility.Above all, you will be dealing with some of the most complex and powerful software that you may ever have been connected with. The parts of this application cannot be treated entirely independent of each other تقديم بلاغ
بتاريخ: 17 أكتوبر 200619 سنة comment_80948 ياحبذا لو يترجم هذا الكلام او يفيدنا أحد بالعربي تقديم بلاغ
بتاريخ: 17 أكتوبر 200619 سنة comment_80968 شكرا على ردك بس مش انه كان ممكن يبقى مختصر عن كده شوية تقديم بلاغ
بتاريخ: 7 نوفمبر 200619 سنة comment_82456 الفرق بين حينها أكبر وأكبر العاديه والسؤال الذي كثيرا ما يطرح هو :ما الفرق بين العاديه اوراكل اكبر واكبر حينها؟والاجابه قد تبدو مبتذلة ، والفرق هو ما صنعه.وهناك العديد من هذه الافكار على مختلف الشعب.يدعي البعض ان لا فرق ، والى حد ما قد يكون هذا صحيحا.في الحقيقة ، حينها دباس دباس منتظمة من ان نتذكر وتهتم طائفة من التأثيرات.كما حينها دباس المرجح عمل اوثق مع اشخاص آخرين أو مجموعات من الاشخاص ،والذين ربما لم تشارك قبل.يا الطلبات الآخر ، ستكون مسؤولة عن ادارة وصيانة وتحجيم وضبط قاعدة البيانات (مثل اي تجارة.لكم حينها فولتب قاعدة البيانات (معالجة المعاملات على الانترنت).بالاضافة الى مسؤوليات اخرى ،يذهب كل من الانتظار والقلق قفل انكم لن يكون في أي معاملات.اوراكل الاعمال الالكترونيه جناح ايضا بعض الوظائف دفعة عالي نسبيا (منه خلق بعض التقاريرتقديم بيانات اخرى من مصادر خارجية ، والبعض الآخر عمل هائل الحسابات على البيانات الموجودة.والجدوله لهذه الوظائف لن تكون تحت قيادتكم.يا لها شيء يذكر عن متى بدأ او البعيد.هذه الوظائف سيكون في ادارة السلطة التقديريه للادارة المالية او المحاسبه. لذا ،ومن المهم المحافظة على علاقات عمل منسجمه معها وفتح خط اتصال.اوراكل الاعمال الالكترونيه جناح ايضا ربماالاعمال الاستخبارات (مكرر) ويمكن ان يكون العديد من هذه الأنواع من التقارير مع ضدها يمكن ان تدار على تخزين البيانات.بعد كل انت التعامل مع شركتكم للبيانات المالية مع مرور الوقت.هذا هو نوع المعلومات التي تريد مع المسؤولين التاريخية تقارير والاتجاهاتوماذا لو السيناريوهات.ضبط ستصبح مشكلة في بعض النقاط لك.هذه العوامل لتحقيق الكثير تحجيم واداء القلق المصاحبه للابلاغ دفعة والبيئةتعمق في تحليل النظام والمعاملات.وفيما يلى قائمة من 11 الاشياء التي قد تودون بحث ضمن ما يعنيه ان يدير تطبيقات اوراكل وعدد قليل من الوظائف التي ستتاح لكم فانك ستجد في الغالب عن طريق شائك البيئة أنك تجد نفسك الآن.تعرف متزامنة المديرين.لا يوجد الاستعمال كما يمكنك ان تعاونك مع هذه او اي وثائق في العمق للمساعدة.الفصل 9 - تركيب والهجره يساعدكم على الطريق ونقاط لكم بعض المعلومات التي قد تكون مساعدة.تذكر انبينما انتم مع معظم المعاملات نظام المستخدمين النهائيين دخول الصف في الوقت المعلومات عن طريق وصله ،انت لا تتعامل مع أي ولتب صحيح.عندما يحصل دفعة دشنت خلال متزامنة الطلب عادة لا تسيطرونفالمستعمل من وزارة المالية ان يقرر عند تقديم المبلغ دفعة وأدرك انه لا يمكن ان تكون نتائج هذا القرار.اكثر الوحدات انكم تنفيذ واكثر الناس الذين يدعو الى تقديم الموارد المكثفة دفعه ،يؤدي الى زيادة تأثير هذه العمليات على رسالتكم.ممتاز الاتصالات والتنسيق بينكم وبين كل الاطراف المعنية سوف يجعل حياتك اسهل.لا تطبق اي رقعة لإنتاج قواعد البيانات ما لم تكن معك اختبرت عدة مرات وعلى المستعمل اختبار القبول به والمستعمل من ذلك اشارة الرقعه المذكورة الثابتة المشكلة إنه يعني أن تحدد (على رقعة ذلك ينطبق على تحديد المشكلة وانه ليس لديها اي اثار جانبية غير متوقعة أو خروج أي شيء في النظام) لجميع البقع التي تطبق).تذكر ، ومن المحتمل جدا لكم خطأ اذا رقعة راحة الانتاج.توثيق جميع البقع : اليوم تطبيق والسبب طلب والأخطاء التي كان من المفترض ان تحل ،والاخطاء التي نشأت بعد تطبيق.حفظ سجلات جميع البقع ولا نمحوها ابدا.اوراكل ستطلب رقعة سجل بعد ذلك ربما ستة اشهر عند احد منكم الحالية البقع الملغومه.اكثر على رقعة ترميم الوثائق ويمكن الاطلاع عليه في الفصل 10.تذكر أن تطبيقات اوراكل بشدة مفهرس. اعادة بناء الادله دوري تحسين الاداء بشكل ملحوظ.ثمة عملية متزامنة يساعدكم مع أداء هذا العمل.محاولة الجدول منذ فترة من الزمن عندما يكون هناك حد أدنى من المستخدمين على النظام.رصد تراجع اجزاء.ربما هذا هو واحد من أهم وأصعب من جميع انحاء العالم.وهذا صحيح بصفة خاصة اذا كنت لم تنفذ تلقائيا الغاء الادارة.(انظر الفصل 2 - 11i ، واكتسبت ملامح جديدة للمعاملات أكثر على هذا معاملات سمات اوراكل). اذاعلى سبيل المثال ، فشل البرنامج المتزامن لانه ليس من احالته الى تراجع قطاعاتفي كل برنامج الى الوراء وذلك من تعطيل وحدة المعالجه المركزية (وحدة المعالجه المركزية) لأن أقصى الدعم لبرامج اخرى متزامنة في الصف.وغالبا ما تخلف وراءها المؤقتة الجداول والأرقام القياسيه التي ينبغي تنظيفها بعناية ومتابعة يدويا.بالغ الحرص المؤقتة مع الجداول الاخرى فيمكن استخدام هذه البرامج لاعداد التقارير ، والنشر ، وتطهيرأو وظائف أخرى.الا محاولة لاضافة القياسيه لاداء دون السؤال اوراكل.وأوراكل لتطبيق ودعم عراف يعرف افضل من اي شخص اذا اضافة اقترحتموها دليل قابل للتقدم في تطبيق اساسي اسوأ اداء.اذا كنت تحاول القيام ببعض التغييرات تأكد انك الوثيقة بالضبط ما فعلتموه.التالى رقعة تطبقون المحتمل جدا أن تحدد التغييرات التي قمتم بها واستبدالها في المعلبه وظيفة ،وضع بكم في مربع واحد.أفهم كيف يعمل رقعة الطلب.تكونوا انفاق قدر كبير من الوقت المستغرق مع جزء من الترقيع :من التخطيط الذي رقع ينطبق على الحصول على رقع وتطبيق رقع ،لاختبار وتوثيق ما الترقيع ،فقط في المرة القادمة لكم وقت بداية التخطيط لتطبيق رقع المقبل.الفصل 10 الترقيع سيساعد كثيرا في هذا المجال.اعرف ان هناك اشياء كثيرة يمكن إبطال أي وقت ان هناك اي تغييرات على قاعدة البيانات.أي وقت ولا اي شيء يمكن ان يكون له تأثير على قاعدة البيانات ، تحقق من صحة عدد الاجساموبشكل دوري مع وتلرب اعد تجميع لهذه.Utlrp.squ الواقعة فى بيت لأوراكل دليل المستخدم ودليل ثانوي الادارة هو المسؤول عن جمع الأشياء الصحيحه.عندما ادارة فوقها ‘’ المستعمل ، يحاول ان اعد تجميع كل الاشياء الصحيحه لجميع السمات اصحابها.انكم في أي وقت مواجهة جديدة خطأمراقبة للمعوقين واعد تجميع قاعدة البيانات أولا قبل البدء فذكرت (الانترنت اوجدت طلب المساعدة التقنيه.افهم الانذارات.دوري وخاصة فهم الحدث الانذارات وفهم كيفية اختلاف تنتج من قاعدة البيانات.نتذكر حينها بأنه هو الآخر ديكور بسيط.فيما عدا انشاء الطابعات التي يمكن صعب بسبب التهيءه الأماكن) كل اليسير وانت تعلم بسرعة.اليكم قريبا في سهولة في بلدكم البيئة.يا خلق اختبار وتطوير قواعد البيانات (ربما اكثر) وسيبقى لها منعش من النسخ (الاستنساخ) ، قاعدة بيانات الانتاج.وكم عدد حالات تختارونهم لانشاء وصيانة المشاريع هو على.كثير من القرار على وجه الدقه عدد قواعد البيانات اعتمادا على ما تمليه التجارة.وكحد ادنى ، اقترح ان ثلاثة على الاقل فصل كامل والبيئات واربع مجموعات كاملة هو افضل.اولا ،وقد تطور البيئة التي يمكن لواضعي لكم وضع التقارير عادة والعرف جمع / الكترونيه) تمديد الاجراء اللغة لغة استفسار (برامج لدعم تلك التقارير.هذه البيئة يمكن منعش على الارتقاء دورة او كلما مطوري نرى ان البيانات لم يعد اي ممثل في الانتاج.ومن المرجح أن يؤدي هذا الى البيئة الأولى لتطبيق رقع.المقبل ، اختبارا البيئة التي تطبقون رقع قبل مستخدم النهائي واختبار القبول والمستعمل سيغنوف.الاختبار يجب أن يكون أقرب ما يمكن الى بيانات الانتاج قبل بدء دورة الترقيع ،ذلك ان المستخدمين النهائيين يمكن اختبار بيانات جديدة قدر الامكان.اخيرا ، ستجدون لكم بيئة الانتاج.الانتاج هو واضح.أفضل ، ستجدون الرابع البيئة : سأعطي الكلمه هو الترقيع (اذا كنتم تركيب الرءيه البيئةيمكنك استخدام هذه لترميم البيئة.الترقيع هي التي يمكنك ان تطبق هذه البقع وتحديد متى والخروج دون ان يؤثر على اي من مستخدمي الشبكه.هذا هو المكان الذي يمكنك ان تنظر لكم الملعب.يمكنك اختبار تغيير النظام دون قلق لكم اذا كسر اى تغييرات أو إذا كانت لها آثار ضاره على أي شيء يقوم به اي شخص.الأستنساخ (انظر الفصل 11) فجعل وجه تكرار البيئة (الطلبات طبقة الاوزون والبيانات ضد اي رقع تطبيق واختبارتقارير مكتوبة والترقيات بداية الاختبار ، والاختبار ،وفي اي مشاكل ولكن قبل كل اختبار يحدد اي من هذه يعود الى الانتاج.رقع تطبيقات اوراكل ، ونمط (نظام ادارة قاعدة البيانات الترابطيه (البقع ، يتعين تطبيقها واختبارها.وينبغي البدء في إعداد قاعدة البيانات (ما لم تكن لديك واحدة فقط لترميم وهاجر الى موعد الاختبار والانتاج.انكم بحاجة الى السيطرة على كيفية ادارة رقعة ، رقعة ،ونسخة من كل من سيطره فرد منكم.وعلاوة على ذلك ، بصفتكم مدير التطبيقات ويمكنك ان تجد نفسك متورطا في الادوار التالية :تطبيقات اوراكل أكبر قدرة التخطيط وتحجيم الاجهزه المعماريه وتصميم تطبيقات نظام تركيب التطبيقات 11i بشأن مخطط الهيكل حالة الاستنساخ 11i ادارة التطبيقات والكتابات تقسيم ودمج وعقد الذنبغلى عقدة الى عقدة متعددة وبالعكس العمل التركيب والتشكيل وإقامة اختبار العمل اوراكل الشبكه (وفس) اوراكلي طلب خادم الامريكية اباتشي ضبط ضبط الامن وتطبيق أوامرت - تطبيق ضبط تزامن مديري ضبط الطلب يونيكس خدمة قضايا الضبط وتحديد الكتابات واخيرا ، طلب حل المشاكل احصاءتالس والترقيات ستكون مسؤوليتك ، وكذلك التأكد من الترقيات وتركيبها على الدعم.اوراكل دعم لا تؤيد اطلاق العديد من الترتيبات واذا وقع اختيارنا على تركيب واحد من هذه الترتيبات) منه ،11.5.8 مع قاعدة البيانات النسخه 8.0.6)انك غير المرجح ان يتمكن من الاعتماد على دعم عراف إذا ما ساءت الأمور.اوراكل لدعم الحل هو ترقية لدعم التشكيل.دائما التأكد من ان أي تركيب أو ترقية هي دعم مجموعة.وهذا يعني ان نظام التشغيل (ع) مع نسخة الشرق الصف ، السراج النسخه مع قاعدة البياناتوطبقة متوسطة مع قاعدة البيانات.الى جانب التعامل مع الترقيات ،انكم بحاجة الى معرفة كيفية التعامل مع اي تحوير التي قام بلدكم ،يصار الى معالجتها في عملية ترقية.يتضمن هذا البرنامج وحدات مؤقتة الجداول والتقارير عادة والعرف الاشكال.انك تحتاج ايضا الى تحديد توقيت ونوع منه ، ساخنه وباردة واعادة المديراو اي مجموعة من الملفات وعندما يمكنك ممارسة لكم المسترده.تذكر ، اذا كنت لا اعرف) لم يلجأ (يمكنك استخدام استعادة الدعم لكم طريقة الاختيارانك لا تملك الدعم والانعاش.فالطريق ليس له قيمة اذا كنت لا تبرأ منه.الارجح أنك ستكون مسؤولة عن بدء ووقف متزامنة المديرين وادارة عاليتها وادائها.تجدر مسؤوليتكم طلب انشاء مجموعات للمستخدمين استخدامها لتقديم التقارير ودفعة وظائف.مركز المساعدة قد انتقل اليكم اذ تنبه الى مشكلة.تكونوا في الدرجة الثانية.ولكم ان ادارة طالب آخر قطعة تستخدم في بالاشتراك مع شريك تركيب حينها.وقد تشمل هذه مكتشف والنماذج والتقارير وغيرها من البرامج التي تستخدم وصلات خاص مع اوراكل الاعمال الالكترونيه وحاشيته.عندما عرف البرامج والنماذج والتقارير ، او انشاء او تعديل ،اضافة الى هذه المنظومه ، وتسجيل تلك الطلبات كما اصبح ما تفعله.مرة أخرى ، هذا إذا ستجدون ان نعالج فيرسيونينغ ونسخه.الجداول المؤقتة مهامها ،وما يمكن ان تقوم هي ايضا اشياء سوف يكون له يد فيفي مرحلة معينة.الجداول المؤقتة هى الوسيلة التي لك بيانات خارجية بلدكم البيانات المالية الى قاعدة البيانات من مصادر خارجية.هذه هي فقط أحد الجداول التي يجب ان ابدأ حاجة الى اتصال من تصميم وجهة النظر.'طلبات طبقة متوسطة والبيانات المرتبطه ارتباطا.وهذا جزء مما يجعل من هذه القوى ومعقدة قطعة من البرامج.ما يؤثر قطعة واحدة غالبا ما يؤثر الآخرين وتؤثر عادة في الجامعة.اذا كانت هناك مشاكل في خدمة قواعد البيانات ، الصفويمكن ان تصبح مؤلمة واضحا لكم مستعمليه حينها الواجهة الاماميه.إذا كان الشكل لا يؤدي بشكل صحيح ، فانك لا ترى القضايا لكم على اداء قاعدة البيانات.مرات عديدة بعد تركيب الرقعه تماما ماهي النماذج والتقارير ستغير الطريقة التي يعمل او وقف العمل.تزامن المديرين ، بغض النظر عن الدرجة التي يمكن ان يقيم في اقامة دولته مجموعات من المشاكل المثيرة للاهتمام.انتم ايضا بحاجة الى معرفة اي من اوراكل لخدمة اباتشي والدراسات جناح والنواقص في القانون الاساسي لكم.جسيرف ، اباتشي ،والوكالة الدولية للمحاسبة التي تأتي مع اوراكل حينها هي التي تسمح للمستخدمين بالوصول لكم نظامكم نظيفة.هناك اشكال التقارير وادارة الخدمة في منتصف الصف.التي قد تصبح شيئا انت في حاجة الى الابقاء على رقعة خلال دورة او ترقية ، اذا كان في أي وقت مضى.ميتالينك (http://metalink.oracle.com) اداة قيمة بأنكم بدوره على اساس منتظم.انك ستصبح أفضل وأفضل في التوصل الى حلول والى المشاكل التي سوف تكون فى وضع عتبة داركم.هذا هو انك سوف ينزل فيه بقع ، بحث المشاكل وايجاد كبير من الوثائق والاوراق البيضاء.وستكون ايضا مصدرا للعديد من الأحباطفذكرت انه لا يجوز تكليف اي محلل جيد جدا) التي تجعل حل المشاكل اسهل او الى شخص تستمر فى الدوران حول عليكم وتضيف كثيرا الى شعورك بالاحباط الذي يرجح تجعلك تتساءل كيف يحصل ابدا اي مشكلة حلها.تحمل معها. في النهاية هي واحدة من افضل ما لديكم.الفصل 11 الاستنساخ سوف اعطيكم المزيد من المعلومات بشأن ما يجري في التعامل مع شركة اوراكل.أفضل خدمة لكم المستخدمين النهائيين ، سيتعين على بعض المكاسب الاساسية فهم بنية وهيكل.اذا كانت هناك نظم أخرى اطعام لكم التركيبقد تحتاج الى فهم البيانات التي تأتي من وماذا يمكن ان تكون على غير ما يرام ، في النقل.لست بحاجة الى معرفة كل شيء عن المحاسبه والمحاسبه المالية معايير المحاسبه)ولكنها تساعد على معرفة الاشياء كما هي www.un.org/esa/coordination/ecosoc حسابات القبض (المال الذي اوشك على شركتك)أب هي حسابات الدفع (غسل الخروج)وGL عام الاستاذ (التقارير بأن الاموال تذهب الى والي.اذا كنت التعامل مع اي نسخة ويندوز لكم منتصف الصف ،انكم بحاجة الى فهم اساسي لتسجيل الدخول وكيف يمكن أن تؤثر عليك والاختلاف في كيفية الطريق والبيئة هي مجموعة المتغيرات.اذا كانت لديكم عدة حالات تشغيل النوافذ على آله وتعقد تركيب لكم سيزدادالبرامج العناصر التي تلعب دورها في زيادة ،لكن بعض الحلول للمشاكل العجيب حقا ان يكون اسهل.بالاضافة الى ذلك يا من هو المسؤول عن ماذا؟ومن المفيد ان منظمتكم مكاتب المساعدة التي فونكتيونالس وتقنيه أخرى يمكن أن يتحول الناس عندما تكون هناك مشكلة ،نقطة الاتصال.اذا كنت احد من هؤلاءويمكن اضافة طبقات المشاكل التى تحتاج الى توجيه يمكن أن تستغرق وقتا طويلا ،بل قد تكون سبيلا لمسار مركزيا اذا كنت قد مستمر انواع مماثلة من مشاكل والحلول لها.نظام الإدارة (سيسادمينس) الارجح تركيب وترقية ،محل القانون الأساسي أو أي من الاجهزه التي القطع لكم تركيب السكان.وسوف يرصد استعمال القرص اداء جسديا والمساعدون.مجموعة من الاداريين ايضا وادارة الصحة والطابعات والطباعه الطوابير.ورغم تحديد هذه الطابعات لتطبيقات يمكن ان مسؤوليتكم.قبل كل شيء ،تكونوا تناول بعض المسائل الاكثر تعقيدا وقوة البرمجيات يمكنكم دائما كانت مرتبطة بها.أجزاء هذا الطلب لا يمكن ان تعالج مستقلة تماما عن كل وثي .ملاحظة : تم الترجمة بواسطه قوقل تقديم بلاغ
بتاريخ: 11 مايو 200916 سنة comment_156486 بسم الله الرحمن الرحيم نعم اخي العزيز كل ما ادلوت به في غاية الصحةو الله يجزيك الخير تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.