Search code examples
sqlazurealter

How to alter table in Azure SQL without query editor


I am using SQL Azure recently.But when I connect SQL Azure database in Sql Server management studio then their is no option for alter the table and stored procedure.

If anybody have solution for this without query so please guide me.


Solution

  • Yes, First: Go to your azure account https://portal.azure.com and follow these steps:

    • Click on sql servers from Browser All option.
    • Then select your server
    • and select your database
    • Click option Open in Visual studio

    There you can alter tables and procedures.

    Second: Here you can only alter your procedure not tables.

    • Open Sql server Management studio(by Run window SSMS).
    • Then select your database
    • Expend Programmability folder then procedures folder.
    • Right click on procedure( which you wants to edit).
    • Change text create to alter Buz it is already created in your db.

    enter image description here