In earlier posts, we learn
In this post, we will see how to start or stop a SQL End Point
Let's first query sys.endpoints catalog view and see all the end points exists
To stop an endpoint:
To start an endpoint:
In this post, we will see how to start or stop a SQL End Point
Let's first query sys.endpoints catalog view and see all the end points exists
select * from sys.endpointsOUTPUT
To stop an endpoint:
ALTER ENDPOINT endpoint_name STATE = STOPPED
To start an endpoint:
ALTER ENDPOINT endpoint_name STATE = STARTED
No comments:
Write Comments