Click here to Skip to main content
15,920,468 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
"How to locate entry in sysdatabases for database"
then answer given is
" to execute the stored procedure sp_databases[^]".
So how to do it?
Posted
Updated 20-Dec-10 18:00pm
v3
Comments
RaviRanjanKr 20-Dec-10 23:44pm    
Link is not working, edit your question.
Abhinav S 20-Dec-10 23:59pm    
Incorrect link.
Abhinav S 21-Dec-10 0:00am    
Minor edit to question.
AspDotNetDev 21-Dec-10 0:01am    
Do you know how to execute any stored procedures?
Manfred Rudolf Bihy 21-Dec-10 8:11am    
@astika: You already had somebody answer you, then you ignore that person, you don't vote and then come back to post another question here which you even copied from the answer you got. I'm talking about this post here: http://www.codeproject.com/Questions/137348/how-to-locate-entry-in-sysdatabases-for-database.aspx

This must be the one the rudest things I've seen sofar on CP. If you are not satisfied with an answer you are free to comment on it and ask for more information. This kind of behavior cannot be tolerated.

One more thing. I checked all your questions sofar and most of them are neither voted upon nor are they accepted. This is in no way acceptable social behavior. You are now a member of this community so try to act accordingly.
Thanks for your attention!

1 solution

Here is your solution:

http://msdn.microsoft.com/en-us/library/ms176070.aspx[^]


To execute write below in SQL Management Studio:
SQL
USE master;
GO
EXEC sp_databases;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900