Click here to Skip to main content
15,891,951 members
Home / Discussions / Database
   

Database

 
Questionpivot error Pin
snouto29-Sep-09 21:28
snouto29-Sep-09 21:28 
AnswerRe: pivot error Pin
Mycroft Holmes30-Sep-09 0:42
professionalMycroft Holmes30-Sep-09 0:42 
AnswerRe: pivot error Pin
Syed Mehroz Alam30-Sep-09 0:50
Syed Mehroz Alam30-Sep-09 0:50 
AnswerRe: pivot error Pin
i.j.russell30-Sep-09 1:15
i.j.russell30-Sep-09 1:15 
Questionhow to backup oracle 10g Pin
E_Gold29-Sep-09 9:58
E_Gold29-Sep-09 9:58 
AnswerRe: how to backup oracle 10g Pin
Mycroft Holmes29-Sep-09 19:31
professionalMycroft Holmes29-Sep-09 19:31 
Questionhelp required in adding dynamic columns and search anywhere in table ???? Pin
jarajeshwaran29-Sep-09 7:17
jarajeshwaran29-Sep-09 7:17 
AnswerRe: help required in adding dynamic columns and search anywhere in table ???? Pin
Mycroft Holmes29-Sep-09 19:43
professionalMycroft Holmes29-Sep-09 19:43 
Some ideas

1
Traditional solution is to have a number of user defined blank columns on a table and allow the user to name and use them. This limits the number of additional fields to the user defined columns you create. It does make query easier.

Another way is to have an attribute type and attribute table where the user can create a type (web address) and create an attribute record for an address where required. This allows unlimited attributes to be created but makes supporting queries more difficult.

2
You are asking for 2 very different things, GMail queries 2 or 3 fields, subject and body, you want to query any field in any table. A simple compound where clause using OR will do that.

Select *
From EmailTable
Where Address like '%searchstring%' or Subject like '%searchstring%' or Body like '%searchstring%'



GeneralRe: help required in adding dynamic columns and search anywhere in table ???? Pin
jarajeshwaran29-Sep-09 23:11
jarajeshwaran29-Sep-09 23:11 
QuestionHow to user SQLServer Authentication in SQL server management studio Pin
AhmedMasum29-Sep-09 2:49
AhmedMasum29-Sep-09 2:49 
AnswerRe: How to user SQLServer Authentication in SQL server management studio Pin
leckey29-Sep-09 3:28
leckey29-Sep-09 3:28 
GeneralRe: How to user SQLServer Authentication in SQL server management studio Pin
AhmedMasum29-Sep-09 17:52
AhmedMasum29-Sep-09 17:52 
AnswerRe: How to user SQLServer Authentication in SQL server management studio Pin
Nisha Agrawal29-Sep-09 20:17
Nisha Agrawal29-Sep-09 20:17 
GeneralRe: How to user SQLServer Authentication in SQL server management studio Pin
AhmedMasum1-Oct-09 4:32
AhmedMasum1-Oct-09 4:32 
GeneralRe: How to user SQLServer Authentication in SQL server management studio Pin
Nisha Agrawal1-Oct-09 19:35
Nisha Agrawal1-Oct-09 19:35 
QuestionHow can I backup my sql server 2008 database on a remote server?? Pin
Nada Adel29-Sep-09 0:33
Nada Adel29-Sep-09 0:33 
AnswerRe: How can I backup my sql server 2008 database on a remote server?? Pin
Vimalsoft(Pty) Ltd29-Sep-09 1:16
professionalVimalsoft(Pty) Ltd29-Sep-09 1:16 
GeneralRe: How can I backup my sql server 2008 database on a remote server?? Pin
Nada Adel29-Sep-09 1:32
Nada Adel29-Sep-09 1:32 
GeneralRe: How can I backup my sql server 2008 database on a remote server?? Pin
Vimalsoft(Pty) Ltd29-Sep-09 1:44
professionalVimalsoft(Pty) Ltd29-Sep-09 1:44 
GeneralRe: How can I backup my sql server 2008 database on a remote server?? Pin
Nada Adel29-Sep-09 1:57
Nada Adel29-Sep-09 1:57 
GeneralRe: How can I backup my sql server 2008 database on a remote server?? [modified] Pin
Vimalsoft(Pty) Ltd29-Sep-09 2:06
professionalVimalsoft(Pty) Ltd29-Sep-09 2:06 
GeneralRe: How can I backup my sql server 2008 database on a remote server?? Pin
Nada Adel29-Sep-09 2:40
Nada Adel29-Sep-09 2:40 
GeneralRe: How can I backup my sql server 2008 database on a remote server?? Pin
Vimalsoft(Pty) Ltd29-Sep-09 2:53
professionalVimalsoft(Pty) Ltd29-Sep-09 2:53 
GeneralRe: How can I backup my sql server 2008 database on a remote server?? Pin
Nada Adel29-Sep-09 2:54
Nada Adel29-Sep-09 2:54 
GeneralRe: How can I backup my sql server 2008 database on a remote server?? Pin
Vimalsoft(Pty) Ltd29-Sep-09 3:19
professionalVimalsoft(Pty) Ltd29-Sep-09 3:19 

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.