shubhi jain
shubhi jain

Reputation: 29

elastic query for update and insert

Source: SQL Server 2008 R2 Destination: Azure SQL Database in an elastic pool

I am migrating multiple databases from source to destination using offline DMS. While migrating these databases some stored procedures are giving errors because of three-part and four-part entries in the stored procedure. for this, I am using external tables to convert it into two-part. but some stored procedures are used for DML commands like insert and update. I want to know how I can convert this DML commands stored procedure in elastic query.

Upvotes: 0

Views: 192

Answers (1)

KarthikBhyresh-MT
KarthikBhyresh-MT

Reputation: 5044

As a limitation mentioned in this doc, Migrating to a DB in elastic pool directly isn't supported. But you can import data into a single database and then move the database to an elastic pool. Once you have it in same Logical Server. Move the DB under Elastic Pool.

Refer similar ask here or the official MS doc to do this using the Portal

Instead you can also initiate replication from a snapshot or through BULK Load.

Upvotes: 0

Related Questions