开发者

increase the stored procedure perfomance

开发者 https://www.devze.com 2023-02-11 14:53 出处:网络
Hi I have the database with huge data. there are several master-detail relationships within it. so i just wanted to build the Views / stored proce开发者_如何学运维dure so that data fetching get much f

Hi I have the database with huge data. there are several master-detail relationships within it. so i just wanted to build the Views / stored proce开发者_如何学运维dure so that data fetching get much faster. I know I can use Index. but i saw it is a limitation in sql server express version. where as i am using express version. so how to perform this in express version. please guide me .


Creating a stored procedure won't speed up query execution.

Making sure that your foreign keys are indexed is the first step. The definite answer to the question of query performance will give you a look at query execution plan. Make sure you don't have any Table Scans / Table Seeks.

0

精彩评论

暂无评论...
验证码 换一张
取 消