{"id":82893,"date":"2024-02-21T09:45:04","date_gmt":"2024-02-21T04:15:04","guid":{"rendered":"https:\/\/cloudfoundation.com\/blog\/?p=82893"},"modified":"2024-04-04T15:35:21","modified_gmt":"2024-04-04T10:05:21","slug":"oracle-dba-interview-questions-and-answers","status":"publish","type":"post","link":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/","title":{"rendered":"Oracle DBA Interview Questions and Answers"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;3.22&#8243;][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_post_title meta=&#8221;off&#8221; featured_image=&#8221;off&#8221; _builder_version=&#8221;4.9.7&#8243; title_font=&#8221;Times New Roman||||||||&#8221; title_text_align=&#8221;left&#8221; title_text_color=&#8221;rgba(0,0,0,0.8)&#8221; title_font_size=&#8221;47&#8243; custom_margin=&#8221;|||10%&#8221; title_font_size_tablet=&#8221;40&#8243; title_font_size_phone=&#8221;35&#8243; title_font_size_last_edited=&#8221;on|desktop&#8221;][\/et_pb_post_title][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; text_font=&#8221;Georgia|300|||||||&#8221; text_text_color=&#8221;rgba(0,0,0,0.8)&#8221; text_font_size=&#8221;22px&#8221; text_line_height=&#8221;1.9em&#8221; header_font=&#8221;Georgia||||||||&#8221; header_font_size=&#8221;22px&#8221; header_line_height=&#8221;1.9em&#8221; max_width=&#8221;800px&#8221; max_width_last_edited=&#8221;off|phone&#8221; custom_margin=&#8221;|||10%&#8221; custom_margin_last_edited=&#8221;off|desktop&#8221; text_font_size_tablet=&#8221;&#8221; text_font_size_phone=&#8221;&#8221; text_font_size_last_edited=&#8221;on|phone&#8221; text_line_height_last_edited=&#8221;off|phone&#8221;]Oracle DBA interview Preparing can be challenging, particularly the architecture interview portion. Oracle databases are complex systems and interviewers may ask a series of questions designed to assess both your knowledge and experience in dealing with them.<\/p>\n<p>This blog explores some of the most frequently encountered Oracle DBA architecture interview questions from an architecture domain perspective, in order to better prepare learners for an interview and increase chances of success.<\/p>\n<p>Knowledge of Oracle database architecture is vital for any Oracle DBA interview.<\/p>\n<p><img decoding=\"async\" class=\"size-medium aligncenter\" src=\"https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/02\/oracle-dba-performance-tuning-interview-questions.jpg\" alt=\"\" width=\"800\" height=\"600\" \/><\/p>\n<p><strong>1. What is a database server?<\/strong><\/p>\n<p>A database server is a storage file that stores information in memory with various components such as a large pool, Java pool, log buffer, and many background processes.<\/p>\n<p>The database server then writes back the information to the database, ensuring that it is available when requested.<\/p>\n<p><strong>2. What is the data architecture in Rack architecture?<\/strong><\/p>\n<p>The data architecture in Rack architecture consists of three layers: presentation, middleware, and data management.<\/p>\n<p>The presentation layer is typically an application, such as a URL or desktop client, and the middleware layer is a middle-tier middleware app or web server hosting business logic.<\/p>\n<p><strong>3. Explain the variance between a standalone and rack database environment?<\/strong><\/p>\n<p>In a standalone environment, there is a single instance and one database, while in a rack environment, there are multiple instances and only one database, resulting in a many-to-one mapping.<\/p>\n<p><strong>4. What is the difference between dedicated and shared server connections?<\/strong><\/p>\n<p>In a dedicated server connection, one to one client is assigned to the server, and the request goes to the server pool.<\/p>\n<p>The result is returned to the dedicated server, and the result is destroyed from the required servers. In a shared server connection, a request queue and response queue are found, and all users&#8217; requests go to the request queue.<\/p>\n<p>The connection method is shared, and at the database level, the command &#8220;select SID and server mode from new data association&#8221; will determine if the connection is dedicated.<\/p>\n<p><strong>5. What is the role of a listener in the database server architecture?<\/strong><\/p>\n<p>The listener is responsible for registering database services with the listener and taking the user&#8217;s details to start a shared server process for each connection, it is also responsible for returning the result to the user once the server process has acted on their request.<\/p>\n<p><strong>6. Define the memory components in the database server?<\/strong><\/p>\n<p>The memory components in the database server include the PGA, which is non-cognitive, and the SGA, which is a cerebral memory.<\/p>\n<p><strong>7. What are the components of the shared pool?<\/strong><\/p>\n<p>The shared pool has two components: library cache and data dictionary cache.<\/p>\n<p>Library cache stores the past representation of all SQL queries, while data dictionary cache holds database object information.<\/p>\n<p><strong>8. How does the shared server process serve incoming requests?<\/strong><\/p>\n<p>A single shared server process is started to serve all incoming requests, it is handled by the PGA program, which is dedicated to specific user connections.<\/p>\n<p><strong>9. What is the function of the buffer cache in the database?<\/strong><\/p>\n<p>The buffer cache holds redo or return data, which is used for transactions and transaction changes. It is useful for instance recovery in case of database crashes.<\/p>\n<p><strong>10. Explain the aim of the checkpoint process in the database?<\/strong><\/p>\n<p>The checkpoint process updates control file and data file headers with the system chain number (S-MON), which is generated by each commit or transaction, it picks up S-MON numbers and updates them into the control and data file headers.<\/p>\n<p><strong>11. What is the purpose of the recover process in the database?<\/strong><\/p>\n<p>The recover process clears all in-door transactions when distributed transactions occur over remote databases.<\/p>\n<p><strong>12. What does the database Archiver do?<\/strong><\/p>\n<p>The Archiver process is used when a log writer writes to Radula, creating multiple re-logs.<\/p>\n<p>Before writing to one of these logs, the archiver process takes a backup of the content inside the log one and stores it in the archiver catalogue.[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_3,1_3,1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#064399&#8243; use_background_color_gradient=&#8221;on&#8221; background_color_gradient_start=&#8221;#0095f2&#8243; background_color_gradient_end=&#8221;#7dbed8&#8243; background_color_gradient_direction=&#8221;92deg&#8221; background_color_gradient_start_position=&#8221;35%&#8221; background_color_gradient_end_position=&#8221;80%&#8221; transform_scale=&#8221;73%|62%&#8221; transform_scale_linked=&#8221;off&#8221; transform_translate=&#8221;-53px|-50px&#8221; transform_translate_linked=&#8221;off&#8221; link_option_url=&#8221;https:\/\/cloudfoundation.com\/blog\/interview-questions\/&#8221; link_option_url_new_window=&#8221;on&#8221;][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_image src=&#8221;https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2023\/06\/SS_436-_Converted_-1.png&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; transform_scale=&#8221;114%|112%&#8221; transform_scale_linked=&#8221;off&#8221; transform_translate=&#8221;25px|-4px&#8221; transform_translate_linked=&#8221;off&#8221; width=&#8221;98.1%&#8221; custom_margin=&#8221;|7px|||false|false&#8221;][\/et_pb_image][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Georgia|700|||||||&#8221; text_font_size=&#8221;23px&#8221; text_line_height=&#8221;1.3em&#8221; header_font=&#8221;Georgia|700|||||||&#8221; header_font_size=&#8221;21px&#8221; header_letter_spacing=&#8221;-1px&#8221; header_line_height=&#8221;2em&#8221; transform_scale=&#8221;171%|159%&#8221; transform_scale_linked=&#8221;off&#8221; transform_translate=&#8221;40px|44px&#8221; transform_translate_linked=&#8221;off&#8221; transform_origin=&#8221;70%|50%&#8221; z_index=&#8221;-161&#8243; width=&#8221;100%&#8221; custom_margin=&#8221;|-215px||||&#8221; custom_padding=&#8221;|0px||||&#8221; link_option_url=&#8221;https:\/\/cloudfoundation.com\/datorama-training\/&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Oracle DBA <\/strong>Training<\/span><\/h1>\n<p>[\/et_pb_text][et_pb_button button_url=&#8221;https:\/\/cloudfoundation.com\/blog\/interview-questions\/&#8221; url_new_window=&#8221;on&#8221; button_text=&#8221;Explore Course Content&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; custom_button=&#8221;on&#8221; button_text_color=&#8221;#0C71C3&#8243; button_bg_color=&#8221;#FFFFFF&#8221; button_font=&#8221;|700|||||||&#8221; transform_translate=&#8221;64px|65px&#8221; transform_translate_linked=&#8221;off&#8221;][\/et_pb_button][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_image src=&#8221;https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2019\/06\/logo_resize_color.png&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; transform_translate=&#8221;-36px|0px&#8221; transform_translate_linked=&#8221;off&#8221; custom_margin=&#8221;|||178px||&#8221;][\/et_pb_image][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; text_font=&#8221;Georgia|300|||||||&#8221; text_text_color=&#8221;rgba(0,0,0,0.8)&#8221; text_font_size=&#8221;22px&#8221; text_line_height=&#8221;1.9em&#8221; header_font=&#8221;Georgia||||||||&#8221; header_font_size=&#8221;22px&#8221; header_line_height=&#8221;1.9em&#8221; max_width=&#8221;800px&#8221; max_width_last_edited=&#8221;off|phone&#8221; custom_margin=&#8221;|||10%&#8221; custom_margin_last_edited=&#8221;off|desktop&#8221; text_font_size_tablet=&#8221;&#8221; text_font_size_phone=&#8221;&#8221; text_font_size_last_edited=&#8221;on|phone&#8221; text_line_height_last_edited=&#8221;off|phone&#8221;]<strong>13. What are database memory components and their functions?<\/strong><\/p>\n<p>The Java pool and stream pool are database components that allocate memory for various activities. The buffer cache holds redo or return data, which is used for transactions and transaction changes.<\/p>\n<p>The memory components include the SGA, which is a cerebral memory, and the PGA, which is non-cognitive.<\/p>\n<p><strong>14. What are some of the data files in the database, and what do they store?<\/strong><\/p>\n<p>The database contains various data files, including control files, password files, archive files, backup files, alert files, and trace files.<\/p>\n<p>Control files store database creation information, database SCN number, and data file location. Data files hold end user data and business data, while transaction logs log transaction details.<\/p>\n<p>Password files hold database password details for remote connection. Parameter files define database parameters, which are read during startup and shutdown.<\/p>\n<p><strong>15. Define the variation between standalone and React databases in Oracle?<\/strong><\/p>\n<p>In a standalone environment, there is a single instance and one database, while in a React environment, there are multiple instances and only one database.<\/p>\n<p><strong>16. What distinguishes SQL Server static and dynamic listeners?<\/strong><\/p>\n<p>A static listener is a P-Mon process that registers database details every 60 seconds, while a dynamic listener is a P-Mon process that automatically registers database details with the listener.<\/p>\n<p>A static listener may not be aware of the database status, which can lead to unsuccessful connections if the database is down. In contrast, a dynamic listener is always ready to register new databases.<\/p>\n<p><strong>17. How does dynamic registration work in SQL Server?<\/strong><\/p>\n<p>Dynamic registration occurs when the P1 process registers the database using the default port 1521, and if the listener is raised on a different port, the local listener parameter must be set manually.<\/p>\n<p><strong>18. How do Oracle rack one node and rack databases differ?<\/strong><\/p>\n<p>In rack one node, only one instance will be running on any one of the cluster nodes, while in rack databases, all the instances will be running on all nodes.<\/p>\n<p><strong>19. What is the role of a listener in SQL Server?<\/strong><\/p>\n<p>A listener is a process that manages connections to databases and services, allowing clients to connect to the correct database or service.<\/p>\n<p><strong>20. Why is it important to understand the differences between static and dynamic listeners in SQL Server?<\/strong><\/p>\n<p>Understanding the differences between static and dynamic listeners is important for proper database management and ensuring successful connections to the database.<\/p>\n<p><img decoding=\"async\" class=\"size-medium aligncenter\" src=\"https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/02\/interview-questions-and-answers-for-oracle-dba.jpg\" alt=\"\" width=\"800\" height=\"600\" \/><\/p>\n<p><strong>21. What is the significance of having multiple instances in a rack database?<\/strong><\/p>\n<p>In a rack database, all four instances run simultaneously, providing more throughput and connectivity.<\/p>\n<p><strong>22. Explain the network concept in Oracle, and how is it ensured?<\/strong><\/p>\n<p>The network concept involves ensuring that two servers are pinging each other and two databases are communicating with each other using their IP addresses.<\/p>\n<p><strong>23. What is the principle of the demonstration?<\/strong><\/p>\n<p>The purpose of the demonstration is to change the database ID (DBID), database name, and database name together in an Oracle database.<\/p>\n<p><strong>24. What are the three demonstrations?\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/strong><\/p>\n<p>The first demonstration is about changing the DBID, database name, and DBID separately. The second demonstration is about changing the DBID and database name together.<\/p>\n<p>The third demonstration is about changing the database name and DBID together.<\/p>\n<p><strong>25. What is listener registration, and how does it work in the database?<\/strong><\/p>\n<p>In the database, listener registration can be dynamic or static. In dynamic registration, the listener is registered when a client connects to the database.<\/p>\n<p>In static registration, the listener is registered manually. One of the main parameters involved is the local listener.[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_3,1_3,1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#064399&#8243; use_background_color_gradient=&#8221;on&#8221; background_color_gradient_start=&#8221;#ff8c7c&#8221; background_color_gradient_end=&#8221;#e5ba4e&#8221; background_color_gradient_type=&#8221;radial&#8221; background_color_gradient_direction_radial=&#8221;top left&#8221; background_color_gradient_start_position=&#8221;35%&#8221; background_color_gradient_end_position=&#8221;80%&#8221; transform_scale=&#8221;74%|69%&#8221; transform_scale_linked=&#8221;off&#8221; transform_translate=&#8221;-53px|-50px&#8221; transform_translate_linked=&#8221;off&#8221; custom_margin=&#8221;||-5px||false|false&#8221; custom_padding=&#8221;|||2px|false|false&#8221; link_option_url=&#8221;https:\/\/cloudfoundation.com\/blog\/interview-questions\/&#8221; link_option_url_new_window=&#8221;on&#8221;][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_image src=&#8221;https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2023\/06\/8423118_3895895.png&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; width=&#8221;85.4%&#8221; custom_margin=&#8221;-31px||-24px||false|false&#8221; custom_padding=&#8221;|22px|0px||false|false&#8221;][\/et_pb_image][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Georgia|700|||||||&#8221; text_font_size=&#8221;23px&#8221; text_line_height=&#8221;1.3em&#8221; header_font=&#8221;Georgia|700|||||||&#8221; header_font_size=&#8221;19px&#8221; header_letter_spacing=&#8221;-1px&#8221; header_line_height=&#8221;1.2em&#8221; transform_scale=&#8221;171%|159%&#8221; transform_scale_linked=&#8221;off&#8221; transform_translate=&#8221;40px|44px&#8221; transform_translate_linked=&#8221;off&#8221; transform_origin=&#8221;70%|50%&#8221; z_index=&#8221;-161&#8243; width=&#8221;100%&#8221; custom_margin=&#8221;|-215px||||&#8221; custom_padding=&#8221;|0px||||&#8221; link_option_url=&#8221;https:\/\/cloudfoundation.com\/datorama-training\/&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Oracle DBA <\/strong>Online Training<\/span><\/h1>\n<p>[\/et_pb_text][et_pb_button button_url=&#8221;https:\/\/cloudfoundation.com\/blog\/interview-questions\/&#8221; url_new_window=&#8221;on&#8221; button_text=&#8221;Up Coming Batches&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; custom_button=&#8221;on&#8221; button_text_color=&#8221;#E09900&#8243; button_bg_color=&#8221;#FFFFFF&#8221; button_font=&#8221;|700|||||||&#8221; transform_translate=&#8221;64px|65px&#8221; transform_translate_linked=&#8221;off&#8221; background_layout=&#8221;dark&#8221;][\/et_pb_button][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_image src=&#8221;https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2019\/06\/logo_resize_color.png&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; transform_translate=&#8221;-36px|0px&#8221; transform_translate_linked=&#8221;off&#8221; custom_margin=&#8221;|||178px||&#8221;][\/et_pb_image][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; text_font=&#8221;Georgia|300|||||||&#8221; text_text_color=&#8221;rgba(0,0,0,0.8)&#8221; text_font_size=&#8221;22px&#8221; text_line_height=&#8221;1.9em&#8221; header_font=&#8221;Georgia||||||||&#8221; header_font_size=&#8221;22px&#8221; header_line_height=&#8221;1.9em&#8221; max_width=&#8221;800px&#8221; max_width_last_edited=&#8221;off|phone&#8221; custom_margin=&#8221;|||10%&#8221; custom_margin_last_edited=&#8221;off|desktop&#8221; text_font_size_tablet=&#8221;&#8221; text_font_size_phone=&#8221;&#8221; text_font_size_last_edited=&#8221;on|phone&#8221; text_line_height_last_edited=&#8221;off|phone&#8221;]<strong>Increase your learning with MCQ\u2019s of Oracle DBA<\/strong><\/p>\n<p><strong>1. Which component of a database server is similar to human memory?<\/strong><\/p>\n<p>a) Log buffe<br \/>\nb) Large pool<br \/>\nc) Java pool<br \/>\n<span style=\"color: #ff6600;\"><em>d) Database server<\/em><\/span><\/p>\n<p><strong>2. In a standalone database environment, how many instances and databases are there?<\/strong><\/p>\n<p><span style=\"color: #ff6600;\"><em>a) One instance and one database<\/em><\/span><br \/>\nb) Multiple databases and one instance<br \/>\nc) One database and multiple instances<br \/>\nd) Multiple instances and multiple databases<\/p>\n<p><strong>3. In a rack database environment, how many databases can be created on a server?<\/strong><\/p>\n<p>a) One database<br \/>\nb) A limited number of databases<br \/>\nc) An unlimited number of databases<br \/>\n<span style=\"color: #ff6600;\"><em>d) It depends on the capacity of the server<\/em><\/span><\/p>\n<p><strong>4. What are the three layers of data architecture in Rack architecture?<\/strong><\/p>\n<p>a) Listener, server process, and PGA<br \/>\n<span style=\"color: #ff6600;\"><em>b) Presentation, middleware, and data management<\/em><\/span><br \/>\nc) Library cache, data dictionary cache, and large pool<br \/>\nd) Client, middle-tier, and back end<\/p>\n<p><strong>5. Which memory component in the database server stores the past representation of all SQL queries?<\/strong><\/p>\n<p>a) SGA<br \/>\nb) PGA<br \/>\n<span style=\"color: #ff6600;\"><em>c) Library cache<\/em><\/span><br \/>\nd) Data dictionary cache<\/p>\n<p><strong>6. Database architecture is described as having a single database with one instance and one database?<\/strong><\/p>\n<p><span style=\"color: #ff6600;\"><em>a) Rack architecture<\/em><\/span><br \/>\nb) Three-tier architecture<br \/>\nc) Oracle Database architecture<br \/>\nd) Database server architecture<\/p>\n<p><strong>7. Which database components allocate memory for various activities, such as calls, Java compilers, and stream replication processes?<\/strong><\/p>\n<p>a) Buffer cache<br \/>\n<em><span style=\"color: #ff6600;\">b) Java pool<\/span><\/em><br \/>\n<span style=\"color: #ff6600;\"><em>c) Stream pool<\/em><\/span><br \/>\nd) Background processes<\/p>\n<p><strong>8. What is the occupation of the buffer cache in a database?<\/strong><\/p>\n<p><span style=\"color: #ff6600;\"><em>a) Holds data for transactions and transaction changes<\/em><\/span><br \/>\nb) Logs transaction details<br \/>\nc) Writes data to data files<br \/>\nd) Writes redo logs to the buffer cache<\/p>\n<p><strong>9. Which process updates control file and data file headers with the system chain number (S-MON)?<\/strong><\/p>\n<p><span style=\"color: #ff6600;\"><em>a) Checkpoint<\/em><\/span><br \/>\nb) Recovery<br \/>\nc) Archiver<br \/>\nd) Log writer<\/p>\n<p><strong>10. What are the two modes in which a database can be installed?<\/strong><\/p>\n<p><span style=\"color: #ff6600;\"><em>a) Graphical user interface (GUI) and silent installation<\/em><\/span><br \/>\nb) Standalone and rack<br \/>\nc) Single instance and multiple instances<br \/>\nd) Local file system and NAS<\/p>\n<p><strong>11. How does dynamic registration occur in SQL Server?<\/strong><\/p>\n<p>a) When the P1 process registers the database using default port 1521<br \/>\nb) When the listener is raised on a different port, a local listener parameter must be set<br \/>\n<em><span style=\"color: #ff6600;\">c) Start the listener with an unknown status and dynamically register local and school listener parameters.<\/span><\/em><br \/>\n<span style=\"color: #000000;\">d) When the listener status is checked, the status shows that most of the database has been successfully registered<\/span><\/p>\n<p><strong>12. What are the four main types of databases in Oracle?<\/strong><\/p>\n<p><span style=\"color: #ff6600;\"><em>a) Standalone, service, rack one node, and rack database<\/em><\/span><br \/>\nb) Primary, secondary, archive, and standby<br \/>\nc) Master, slave, read-write, and read-only<br \/>\nd) Clustered, distributed, local, and remote<\/p>\n<p><strong>13. In a rack one node database, how many instances can be running on any one of the cluster nodes?<\/strong><\/p>\n<p>a) Three<br \/>\nb) Two<br \/>\n<span style=\"color: #ff6600;\"><em>c) One<\/em><\/span><br \/>\nd) Four<\/p>\n<p><strong>14. Which file does the user recreate to point to the new database after removing the old SP file?<\/strong><\/p>\n<p><span style=\"color: #ff6600;\"><em>a) Control files<\/em><\/span><br \/>\nb) Show parameter file<br \/>\nc) Data files<br \/>\nd) Device files<\/p>\n<p><strong>15. What command is used to create and update the test for a new database?<\/strong><\/p>\n<p>a) ALTER DATABASE command<br \/>\n<span style=\"color: #ff6600;\"><em>b) RTAB command<\/em><\/span><br \/>\nc) CREATE DATABASE command<br \/>\nd) STARTUP MOUNT command<\/p>\n<p><img decoding=\"async\" class=\"size-medium aligncenter\" src=\"https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/02\/image-4-2.png\" alt=\"\" width=\"3401\" height=\"167\" \/><br \/>\n<strong>Conclusion:<\/strong><\/p>\n<p>Be ready for Oracle DBA administration questions such as monitoring database statistics, configuring your database or managing user accounts to ensure a successful interview experience. Study up on these areas before your interview date![\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_3,1_3,1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#064399&#8243; use_background_color_gradient=&#8221;on&#8221; background_color_gradient_start=&#8221;#494fff&#8221; background_color_gradient_end=&#8221;#9ea6ff&#8221; background_color_gradient_type=&#8221;radial&#8221; background_color_gradient_direction_radial=&#8221;top left&#8221; background_color_gradient_start_position=&#8221;35%&#8221; background_color_gradient_end_position=&#8221;80%&#8221; transform_scale=&#8221;74%|71%&#8221; transform_scale_linked=&#8221;off&#8221; transform_translate=&#8221;-53px|-50px&#8221; transform_translate_linked=&#8221;off&#8221; link_option_url=&#8221;https:\/\/cloudfoundation.com\/blog\/interview-questions\/&#8221; link_option_url_new_window=&#8221;on&#8221;][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_image src=&#8221;https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2023\/06\/Untitled-11.png&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; transform_scale=&#8221;103%|103%&#8221; transform_scale_linked=&#8221;off&#8221; transform_translate=&#8221;11px|0px&#8221; transform_translate_linked=&#8221;off&#8221; custom_padding=&#8221;|88px||||&#8221;][\/et_pb_image][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; text_font=&#8221;Georgia|700|||||||&#8221; text_text_color=&#8221;#FFFFFF&#8221; text_font_size=&#8221;23px&#8221; text_line_height=&#8221;1.3em&#8221; header_font=&#8221;Georgia|700|||||||&#8221; header_font_size=&#8221;19px&#8221; header_letter_spacing=&#8221;-1px&#8221; header_line_height=&#8221;1.2em&#8221; transform_scale=&#8221;171%|159%&#8221; transform_scale_linked=&#8221;off&#8221; transform_translate=&#8221;40px|44px&#8221; transform_translate_linked=&#8221;off&#8221; transform_origin=&#8221;70%|50%&#8221; z_index=&#8221;-161&#8243; width=&#8221;100%&#8221; custom_margin=&#8221;|-215px||||&#8221; custom_padding=&#8221;|0px||||&#8221; link_option_url=&#8221;https:\/\/cloudfoundation.com\/datorama-training\/&#8221;]<\/p>\n<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\"><strong>Oracle DBA Course Price<\/strong><\/span><\/h1>\n<p>[\/et_pb_text][et_pb_button button_url=&#8221;https:\/\/cloudfoundation.com\/blog\/interview-questions\/&#8221; url_new_window=&#8221;on&#8221; button_text=&#8221;Offer Price&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; custom_button=&#8221;on&#8221; button_text_color=&#8221;#0C71C3&#8243; button_bg_color=&#8221;#FFFFFF&#8221; button_font=&#8221;|700|||||||&#8221; transform_translate=&#8221;64px|65px&#8221; transform_translate_linked=&#8221;off&#8221;][\/et_pb_button][\/et_pb_column][et_pb_column type=&#8221;1_3&#8243; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221;][et_pb_image src=&#8221;https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2019\/06\/logo_resize_color.png&#8221; _builder_version=&#8221;4.9.7&#8243; _module_preset=&#8221;default&#8221; transform_translate=&#8221;-36px|0px&#8221; transform_translate_linked=&#8221;off&#8221; custom_margin=&#8221;|||178px||&#8221;][\/et_pb_image][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_team_member name=&#8221;Kumari&#8221; position=&#8221;Author&#8221; image_url=&#8221;http:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/04\/Kumari.png&#8221; _builder_version=&#8221;4.9.7&#8243; header_font=&#8221;Titillium Web|700|||||||&#8221; body_font=&#8221;Titillium Web||||||||&#8221; body_font_size=&#8221;16&#8243; hover_enabled=&#8221;0&#8243; title_text=&#8221;Kumari&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<h5>Knowledge speaks, but wisdom listens.<\/h5>\n<p>[\/et_pb_team_member][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;3.22&#8243;][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_post_title meta=&#8221;off&#8221; featured_image=&#8221;off&#8221; _builder_version=&#8221;4.9.7&#8243; title_font=&#8221;Times New Roman||||||||&#8221; title_text_align=&#8221;left&#8221; title_text_color=&#8221;rgba(0,0,0,0.8)&#8221; title_font_size=&#8221;47&#8243; custom_margin=&#8221;|||10%&#8221; title_font_size_tablet=&#8221;40&#8243; title_font_size_phone=&#8221;35&#8243; title_font_size_last_edited=&#8221;on|desktop&#8221;][\/et_pb_post_title][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; text_font=&#8221;Georgia|300|||||||&#8221; text_text_color=&#8221;rgba(0,0,0,0.8)&#8221; text_font_size=&#8221;22px&#8221; text_line_height=&#8221;1.9em&#8221; header_font=&#8221;Georgia||||||||&#8221; header_font_size=&#8221;22px&#8221; header_line_height=&#8221;1.9em&#8221; max_width=&#8221;800px&#8221; max_width_last_edited=&#8221;off|phone&#8221; custom_margin=&#8221;|||10%&#8221; custom_margin_last_edited=&#8221;off|desktop&#8221; text_font_size_tablet=&#8221;&#8221; text_font_size_phone=&#8221;&#8221; text_font_size_last_edited=&#8221;on|phone&#8221; text_line_height_last_edited=&#8221;off|phone&#8221;]Oracle DBA interview Preparing can be challenging, particularly [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":82901,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"2880","footnotes":""},"categories":[84],"tags":[],"class_list":{"0":"post-82893","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-interview-questions"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle DBA Interview Questions and Answers<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle DBA Interview Questions and Answers\" \/>\n<meta property=\"og:description\" content=\"[et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;3.22&#8243;][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_post_title meta=&#8221;off&#8221; featured_image=&#8221;off&#8221; _builder_version=&#8221;4.9.7&#8243; title_font=&#8221;Times New Roman||||||||&#8221; title_text_align=&#8221;left&#8221; title_text_color=&#8221;rgba(0,0,0,0.8)&#8221; title_font_size=&#8221;47&#8243; custom_margin=&#8221;|||10%&#8221; title_font_size_tablet=&#8221;40&#8243; title_font_size_phone=&#8221;35&#8243; title_font_size_last_edited=&#8221;on|desktop&#8221;][\/et_pb_post_title][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; text_font=&#8221;Georgia|300|||||||&#8221; text_text_color=&#8221;rgba(0,0,0,0.8)&#8221; text_font_size=&#8221;22px&#8221; text_line_height=&#8221;1.9em&#8221; header_font=&#8221;Georgia||||||||&#8221; header_font_size=&#8221;22px&#8221; header_line_height=&#8221;1.9em&#8221; max_width=&#8221;800px&#8221; max_width_last_edited=&#8221;off|phone&#8221; custom_margin=&#8221;|||10%&#8221; custom_margin_last_edited=&#8221;off|desktop&#8221; text_font_size_tablet=&#8221;&#8221; text_font_size_phone=&#8221;&#8221; text_font_size_last_edited=&#8221;on|phone&#8221; text_line_height_last_edited=&#8221;off|phone&#8221;]Oracle DBA interview Preparing can be challenging, particularly [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"CloudFoundation | Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-21T04:15:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-04T10:05:21+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/02\/Oracle-DBA-Featured-Image.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"614\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"NAGENDRAG\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"NAGENDRAG\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle DBA Interview Questions and Answers","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"Oracle DBA Interview Questions and Answers","og_description":"[et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;3.22&#8243;][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_post_title meta=&#8221;off&#8221; featured_image=&#8221;off&#8221; _builder_version=&#8221;4.9.7&#8243; title_font=&#8221;Times New Roman||||||||&#8221; title_text_align=&#8221;left&#8221; title_text_color=&#8221;rgba(0,0,0,0.8)&#8221; title_font_size=&#8221;47&#8243; custom_margin=&#8221;|||10%&#8221; title_font_size_tablet=&#8221;40&#8243; title_font_size_phone=&#8221;35&#8243; title_font_size_last_edited=&#8221;on|desktop&#8221;][\/et_pb_post_title][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;3.25&#8243; background_size=&#8221;initial&#8221; background_position=&#8221;top_left&#8221; background_repeat=&#8221;repeat&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_text _builder_version=&#8221;4.9.7&#8243; text_font=&#8221;Georgia|300|||||||&#8221; text_text_color=&#8221;rgba(0,0,0,0.8)&#8221; text_font_size=&#8221;22px&#8221; text_line_height=&#8221;1.9em&#8221; header_font=&#8221;Georgia||||||||&#8221; header_font_size=&#8221;22px&#8221; header_line_height=&#8221;1.9em&#8221; max_width=&#8221;800px&#8221; max_width_last_edited=&#8221;off|phone&#8221; custom_margin=&#8221;|||10%&#8221; custom_margin_last_edited=&#8221;off|desktop&#8221; text_font_size_tablet=&#8221;&#8221; text_font_size_phone=&#8221;&#8221; text_font_size_last_edited=&#8221;on|phone&#8221; text_line_height_last_edited=&#8221;off|phone&#8221;]Oracle DBA interview Preparing can be challenging, particularly [&hellip;]","og_url":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/","og_site_name":"CloudFoundation | Blog","article_published_time":"2024-02-21T04:15:04+00:00","article_modified_time":"2024-04-04T10:05:21+00:00","og_image":[{"width":1000,"height":614,"url":"http:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/02\/Oracle-DBA-Featured-Image.jpg","type":"image\/jpeg"}],"author":"NAGENDRAG","twitter_card":"summary_large_image","twitter_misc":{"Written by":"NAGENDRAG","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/","url":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/","name":"Oracle DBA Interview Questions and Answers","isPartOf":{"@id":"https:\/\/cloudfoundation.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/#primaryimage"},"image":{"@id":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/#primaryimage"},"thumbnailUrl":"https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/02\/Oracle-DBA-Featured-Image.jpg","datePublished":"2024-02-21T04:15:04+00:00","dateModified":"2024-04-04T10:05:21+00:00","author":{"@id":"https:\/\/cloudfoundation.com\/blog\/#\/schema\/person\/df6c7eba98f1bb15f2a100a9958266e4"},"breadcrumb":{"@id":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/#primaryimage","url":"https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/02\/Oracle-DBA-Featured-Image.jpg","contentUrl":"https:\/\/cloudfoundation.com\/blog\/wp-content\/uploads\/2024\/02\/Oracle-DBA-Featured-Image.jpg","width":1000,"height":614},{"@type":"BreadcrumbList","@id":"https:\/\/cloudfoundation.com\/blog\/oracle-dba-interview-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudfoundation.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Oracle DBA Interview Questions and Answers"}]},{"@type":"WebSite","@id":"https:\/\/cloudfoundation.com\/blog\/#website","url":"https:\/\/cloudfoundation.com\/blog\/","name":"CloudFoundation | Blog","description":"A New way of Learning","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudfoundation.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cloudfoundation.com\/blog\/#\/schema\/person\/df6c7eba98f1bb15f2a100a9958266e4","name":"NAGENDRAG","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudfoundation.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09e08ba1102807a876f2c00245d6b955f0a9f027b40c181e9cee0cd2d927f84a?s=96&d=wavatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09e08ba1102807a876f2c00245d6b955f0a9f027b40c181e9cee0cd2d927f84a?s=96&d=wavatar&r=g","caption":"NAGENDRAG"},"url":"https:\/\/cloudfoundation.com\/blog\/author\/nagendrag\/"}]}},"_links":{"self":[{"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/posts\/82893","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/comments?post=82893"}],"version-history":[{"count":5,"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/posts\/82893\/revisions"}],"predecessor-version":[{"id":86450,"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/posts\/82893\/revisions\/86450"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/media\/82901"}],"wp:attachment":[{"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/media?parent=82893"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/categories?post=82893"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudfoundation.com\/blog\/wp-json\/wp\/v2\/tags?post=82893"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}