From the course: Extend Web Application Functionality on Microsoft Azure

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Configuring the existing cloud resources

Configuring the existing cloud resources

- [Instructor] We need to enable the change tracking option in the database and the Pets table. So let's navigate to the SQL database and open the query editor. And here I'm going to paste the required statement which is ALTER DATABASE, and then the name of the database. SET CHANGE_TRACKING = ON. And as you can see, I'm passing other configurations such as the CHANGE_RETENTION in days and also the AUTO_CLEANUP. So I already did this, there's no need for me to execute this again. And we also need to enable the CHANGE_TRACKING for the Pets table. In this case, we need to execute ALTER TABLE, the name of the table, and then enable CHANGE_TRACKING. Again, I already did this so there's no need for me to execute that. In fact, if I execute this, I'm going to get this error. So that's fine. Now we need to create the records container. So let's navigate back to the overview page, and wisdompetmedicine, and let's navigate…

Contents