# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
import oci
# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()
# Initialize service client with default config file
database_management_client = oci.database_management.DbManagementClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
create_job_response = database_management_client.create_job(
create_job_details=oci.database_management.models.CreateSqlJobDetails(
job_type="SQL",
name="EXAMPLE-name-Value",
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
schedule_type="IMMEDIATE",
operation_type="EXECUTE_SQL",
description="EXAMPLE-description-Value",
managed_database_group_id="ocid1.test.oc1..<unique_ID>EXAMPLE-managedDatabaseGroupId-Value",
managed_database_id="ocid1.test.oc1..<unique_ID>EXAMPLE-managedDatabaseId-Value",
database_sub_type="NON_CDB",
timeout="EXAMPLE-timeout-Value",
result_location=oci.database_management.models.ObjectStorageJobExecutionResultLocation(
type="OBJECT_STORAGE",
namespace_name="EXAMPLE-namespaceName-Value",
bucket_name="EXAMPLE-bucketName-Value"),
schedule_details=oci.database_management.models.JobScheduleDetails(
start_time="EXAMPLE-startTime-Value",
end_time="EXAMPLE-endTime-Value",
interval_type="WEEKLY",
interval_value="EXAMPLE-intervalValue-Value"),
sql_text="EXAMPLE-sqlText-Value",
in_binds=oci.database_management.models.JobInBindsDetails(
items=[
oci.database_management.models.JobInBind(
position=46,
data_type="STRING",
values=["EXAMPLE--Value"],
array_type_name="EXAMPLE-arrayTypeName-Value")]),
out_binds=oci.database_management.models.JobOutBindsDetails(
items=[
oci.database_management.models.JobOutBind(
position=49,
data_type="CLOB")]),
sql_type="PLSQL",
user_name="EXAMPLE-userName-Value",
password="EXAMPLE-password-Value",
secret_id="ocid1.test.oc1..<unique_ID>EXAMPLE-secretId-Value",
named_credential_id="ocid1.test.oc1..<unique_ID>EXAMPLE-namedCredentialId-Value",
role="NORMAL",
freeform_tags={
'EXAMPLE_KEY_6JUOe': 'EXAMPLE_VALUE_uXos5PLtilEp7MPzF56z'},
defined_tags={
'EXAMPLE_KEY_jvwdi': {
'EXAMPLE_KEY_lzcMp': 'EXAMPLE--Value'}}),
opc_request_id="VLTTOLSAEYWV0CFTGCDN<unique_ID>",
opc_retry_token="EXAMPLE-opcRetryToken-Value")
# Get the data from response
print(create_job_response.data)