Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Textbox1 Keyboard not working Search(Button)

I want to search textbox1 value (keyboard not working) in all probabilities as follows

key
keyboard
not
working
work

for that how can i search and write the query in sql server.
Posted
Comments
_Asif_ 26-May-15 8:39am    
Question is not clear, you need to add more details

 
Share this answer
 
Reference Query

SQL
SELECT DISTINCT 
       o.name AS Object_Name,
       o.type_desc
  FROM sys.sql_modules m 
       INNER JOIN 
       sys.objects o 
         ON m.object_id = o.object_id
 WHERE m.definition Like '%[ABD]%';
 
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