Click here to Skip to main content
15,896,557 members
Home / Discussions / Database
   

Database

 
QuestionGetting Problem !What could be the problem? Pin
bilal haider12-Dec-08 6:08
bilal haider12-Dec-08 6:08 
AnswerRe: Getting Problem !What could be the problem? Pin
Ben Fair12-Dec-08 9:52
Ben Fair12-Dec-08 9:52 
GeneralRe: Getting Problem !What could be the problem? Pin
bilal haider14-Dec-08 18:47
bilal haider14-Dec-08 18:47 
GeneralRe: Getting Problem !What could be the problem? Pin
Ben Fair15-Dec-08 1:46
Ben Fair15-Dec-08 1:46 
QuestionHow to create automated reports? Pin
sruefer12-Dec-08 5:04
sruefer12-Dec-08 5:04 
AnswerRe: How to create automated reports? PinPopular
Mycroft Holmes12-Dec-08 22:36
professionalMycroft Holmes12-Dec-08 22:36 
QuestionHow to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
shaik abdul gani12-Dec-08 2:50
shaik abdul gani12-Dec-08 2:50 
AnswerRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
Wendelius12-Dec-08 3:19
mentorWendelius12-Dec-08 3:19 
Use system tables. Loop through all the tables based on sysobjects and then loop through each tables columns based on syscolumns. Then try to find the text you want on character columns.

If you're using SQL Server 2005 or above use:
- sys.objects instead of sysobjects
- sys.columns instead of syscolumns

The need to optimize rises from a bad design.My articles[^]

GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
shaik abdul gani12-Dec-08 15:06
shaik abdul gani12-Dec-08 15:06 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
Wendelius13-Dec-08 9:44
mentorWendelius13-Dec-08 9:44 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
shaik abdul gani14-Dec-08 18:54
shaik abdul gani14-Dec-08 18:54 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
Ashfield14-Dec-08 21:34
Ashfield14-Dec-08 21:34 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
shaik abdul gani14-Dec-08 22:06
shaik abdul gani14-Dec-08 22:06 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
Ashfield15-Dec-08 1:37
Ashfield15-Dec-08 1:37 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
Wendelius15-Dec-08 5:30
mentorWendelius15-Dec-08 5:30 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
Wendelius15-Dec-08 5:26
mentorWendelius15-Dec-08 5:26 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
shaik abdul gani15-Dec-08 23:53
shaik abdul gani15-Dec-08 23:53 
GeneralRe: How to search all columns of all tables in a database for a keyword? ( based on indexes) Pin
emiaj15-Dec-08 5:31
emiaj15-Dec-08 5:31 
QuestionInsertion Pin
kirandilip12-Dec-08 0:36
kirandilip12-Dec-08 0:36 
AnswerRe: Insertion Pin
Vimalsoft(Pty) Ltd12-Dec-08 0:59
professionalVimalsoft(Pty) Ltd12-Dec-08 0:59 
GeneralRe: Insertion Pin
Oakman12-Dec-08 2:14
Oakman12-Dec-08 2:14 
QuestionSQL Question Statement "With" Pin
Vimalsoft(Pty) Ltd11-Dec-08 23:02
professionalVimalsoft(Pty) Ltd11-Dec-08 23:02 
AnswerRe: SQL Question Statement "With" Pin
Ashfield12-Dec-08 1:19
Ashfield12-Dec-08 1:19 
GeneralRe: SQL Question Statement "With" Pin
Vimalsoft(Pty) Ltd12-Dec-08 1:22
professionalVimalsoft(Pty) Ltd12-Dec-08 1:22 
GeneralRe: SQL Question Statement "With" Pin
Ashfield12-Dec-08 3:59
Ashfield12-Dec-08 3:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.