How to create geo replication for azure SQL using python
up vote
0
down vote
favorite
I have gone through the python azure SDK documentation. But I cannot able to find any modules that can be used to create sql geo replication.
I can find powershell commands to create geo replication. But I need it in python.
Thanks
python azure azure-sql-database
add a comment |
up vote
0
down vote
favorite
I have gone through the python azure SDK documentation. But I cannot able to find any modules that can be used to create sql geo replication.
I can find powershell commands to create geo replication. But I need it in python.
Thanks
python azure azure-sql-database
You can use REST API from Python. docs.microsoft.com/en-us/rest/api/sql
– Alberto Morillo
Nov 20 at 12:40
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have gone through the python azure SDK documentation. But I cannot able to find any modules that can be used to create sql geo replication.
I can find powershell commands to create geo replication. But I need it in python.
Thanks
python azure azure-sql-database
I have gone through the python azure SDK documentation. But I cannot able to find any modules that can be used to create sql geo replication.
I can find powershell commands to create geo replication. But I need it in python.
Thanks
python azure azure-sql-database
python azure azure-sql-database
asked Nov 20 at 7:20
Marshall Kiruba
184
184
You can use REST API from Python. docs.microsoft.com/en-us/rest/api/sql
– Alberto Morillo
Nov 20 at 12:40
add a comment |
You can use REST API from Python. docs.microsoft.com/en-us/rest/api/sql
– Alberto Morillo
Nov 20 at 12:40
You can use REST API from Python. docs.microsoft.com/en-us/rest/api/sql
– Alberto Morillo
Nov 20 at 12:40
You can use REST API from Python. docs.microsoft.com/en-us/rest/api/sql
– Alberto Morillo
Nov 20 at 12:40
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Creating a geo secondary database is done using the create database API. An example of the REST API for this is below:
{
"location": "southeastasia",
"sku": {
"name": "S0",
"tier": "Standard"
},
"properties": {
"createMode": "Secondary",
"sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb"
}
}
(From https://docs.microsoft.com/en-us/rest/api/sql/databases/createorupdate#creates_a_database_as_an_on-line_secondary. )
This is accessible in the Python SDK (azure-mgmt-sql) like this:
from azure.common.client_factory import get_client_from_cli_profile
from azure.mgmt.resource import ResourceManagementClient
from azure.mgmt.sql import SqlManagementClient
from azure.mgmt.sql.models import CreateMode
RESOURCE_GROUP = 'YOUR_RESOURCE_GROUP_NAME'
LOCATION = 'eastus' # example Azure availability zone, should match resource group
SQL_SERVER = 'yourvirtualsqlserver'
SQL_DB = 'YOUR_SQLDB_NAME'
sql_client = get_client_from_cli_profile(SqlManagementClient)
# Create a SQL database in the Basic tier
database = sql_client.databases.create_or_update(
RESOURCE_GROUP,
SQL_SERVER,
SQL_DB,
{
'location': LOCATION,
'create_mode': CreateMode.secondary.value,
'source_database_id': '/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb'
}
)
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Creating a geo secondary database is done using the create database API. An example of the REST API for this is below:
{
"location": "southeastasia",
"sku": {
"name": "S0",
"tier": "Standard"
},
"properties": {
"createMode": "Secondary",
"sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb"
}
}
(From https://docs.microsoft.com/en-us/rest/api/sql/databases/createorupdate#creates_a_database_as_an_on-line_secondary. )
This is accessible in the Python SDK (azure-mgmt-sql) like this:
from azure.common.client_factory import get_client_from_cli_profile
from azure.mgmt.resource import ResourceManagementClient
from azure.mgmt.sql import SqlManagementClient
from azure.mgmt.sql.models import CreateMode
RESOURCE_GROUP = 'YOUR_RESOURCE_GROUP_NAME'
LOCATION = 'eastus' # example Azure availability zone, should match resource group
SQL_SERVER = 'yourvirtualsqlserver'
SQL_DB = 'YOUR_SQLDB_NAME'
sql_client = get_client_from_cli_profile(SqlManagementClient)
# Create a SQL database in the Basic tier
database = sql_client.databases.create_or_update(
RESOURCE_GROUP,
SQL_SERVER,
SQL_DB,
{
'location': LOCATION,
'create_mode': CreateMode.secondary.value,
'source_database_id': '/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb'
}
)
add a comment |
up vote
0
down vote
Creating a geo secondary database is done using the create database API. An example of the REST API for this is below:
{
"location": "southeastasia",
"sku": {
"name": "S0",
"tier": "Standard"
},
"properties": {
"createMode": "Secondary",
"sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb"
}
}
(From https://docs.microsoft.com/en-us/rest/api/sql/databases/createorupdate#creates_a_database_as_an_on-line_secondary. )
This is accessible in the Python SDK (azure-mgmt-sql) like this:
from azure.common.client_factory import get_client_from_cli_profile
from azure.mgmt.resource import ResourceManagementClient
from azure.mgmt.sql import SqlManagementClient
from azure.mgmt.sql.models import CreateMode
RESOURCE_GROUP = 'YOUR_RESOURCE_GROUP_NAME'
LOCATION = 'eastus' # example Azure availability zone, should match resource group
SQL_SERVER = 'yourvirtualsqlserver'
SQL_DB = 'YOUR_SQLDB_NAME'
sql_client = get_client_from_cli_profile(SqlManagementClient)
# Create a SQL database in the Basic tier
database = sql_client.databases.create_or_update(
RESOURCE_GROUP,
SQL_SERVER,
SQL_DB,
{
'location': LOCATION,
'create_mode': CreateMode.secondary.value,
'source_database_id': '/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb'
}
)
add a comment |
up vote
0
down vote
up vote
0
down vote
Creating a geo secondary database is done using the create database API. An example of the REST API for this is below:
{
"location": "southeastasia",
"sku": {
"name": "S0",
"tier": "Standard"
},
"properties": {
"createMode": "Secondary",
"sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb"
}
}
(From https://docs.microsoft.com/en-us/rest/api/sql/databases/createorupdate#creates_a_database_as_an_on-line_secondary. )
This is accessible in the Python SDK (azure-mgmt-sql) like this:
from azure.common.client_factory import get_client_from_cli_profile
from azure.mgmt.resource import ResourceManagementClient
from azure.mgmt.sql import SqlManagementClient
from azure.mgmt.sql.models import CreateMode
RESOURCE_GROUP = 'YOUR_RESOURCE_GROUP_NAME'
LOCATION = 'eastus' # example Azure availability zone, should match resource group
SQL_SERVER = 'yourvirtualsqlserver'
SQL_DB = 'YOUR_SQLDB_NAME'
sql_client = get_client_from_cli_profile(SqlManagementClient)
# Create a SQL database in the Basic tier
database = sql_client.databases.create_or_update(
RESOURCE_GROUP,
SQL_SERVER,
SQL_DB,
{
'location': LOCATION,
'create_mode': CreateMode.secondary.value,
'source_database_id': '/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb'
}
)
Creating a geo secondary database is done using the create database API. An example of the REST API for this is below:
{
"location": "southeastasia",
"sku": {
"name": "S0",
"tier": "Standard"
},
"properties": {
"createMode": "Secondary",
"sourceDatabaseId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb"
}
}
(From https://docs.microsoft.com/en-us/rest/api/sql/databases/createorupdate#creates_a_database_as_an_on-line_secondary. )
This is accessible in the Python SDK (azure-mgmt-sql) like this:
from azure.common.client_factory import get_client_from_cli_profile
from azure.mgmt.resource import ResourceManagementClient
from azure.mgmt.sql import SqlManagementClient
from azure.mgmt.sql.models import CreateMode
RESOURCE_GROUP = 'YOUR_RESOURCE_GROUP_NAME'
LOCATION = 'eastus' # example Azure availability zone, should match resource group
SQL_SERVER = 'yourvirtualsqlserver'
SQL_DB = 'YOUR_SQLDB_NAME'
sql_client = get_client_from_cli_profile(SqlManagementClient)
# Create a SQL database in the Basic tier
database = sql_client.databases.create_or_update(
RESOURCE_GROUP,
SQL_SERVER,
SQL_DB,
{
'location': LOCATION,
'create_mode': CreateMode.secondary.value,
'source_database_id': '/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Sql/servers/testsvr1/databases/testdb'
}
)
answered Dec 6 at 6:53
Jared Moore
2,8671929
2,8671929
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388047%2fhow-to-create-geo-replication-for-azure-sql-using-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You can use REST API from Python. docs.microsoft.com/en-us/rest/api/sql
– Alberto Morillo
Nov 20 at 12:40