1
Answer

error in connecting database

qureshi aquib

qureshi aquib

12y
1k
1
hie guyz
i have problem in connecting service based database in windows forms.
when i click it its shows me the error
connections to sql server database require sql server 2005expres or 2008 express to be installed and running in the local computer
i dont know how to solve this error i have installed sql server2010 express from the website
but the error is not going
i am using windows 7.
but when installing whole package of vs2010 in windows xp doesent gives me such error only in windows 7 i am facing this problem
Answers (1)
0
Rajeswari nathan
NA 274 20k 15y

Nice,
This answer is helpful for me.
0
Purushottam Rathore
20 8.9k 6.6m 15y
Thanks for reply. My question is how to find stored procedure which are related to particular table. Well, i have found the solution. SELECT DISTINCT sp.name as StoredProcedureName FROM syscomments scomment INNER JOIN sysobjects sp ON scomment.id=sp.id WHERE scomment.TEXT LIKE '%BannerStatistics%'
0
Roei Bar
NA 7.8k 0 15y
if you are looking for all sp used in specific DB you can use

select * from sys.objects where type='p'

or i am missing something