Click here to Skip to main content
15,903,175 members
Home / Discussions / Database
   

Database

 
AnswerRe: Automatic update table based on time Pin
Eddy Vluggen20-Feb-11 5:03
professionalEddy Vluggen20-Feb-11 5:03 
AnswerRe: Automatic update table based on time Pin
PIEBALDconsult21-Feb-11 8:21
mvePIEBALDconsult21-Feb-11 8:21 
GeneralRe: Automatic update table based on time Pin
AhmedMasum22-Feb-11 1:28
AhmedMasum22-Feb-11 1:28 
GeneralRe: Automatic update table based on time Pin
PIEBALDconsult22-Feb-11 10:37
mvePIEBALDconsult22-Feb-11 10:37 
QuestionCannot use mysql in linux fedora14. Do we have to install it or the bydefault coming is fine. Pin
cmaheshwari1619-Feb-11 2:30
cmaheshwari1619-Feb-11 2:30 
AnswerRe: Cannot use mysql in linux fedora14. Do we have to install it or the bydefault coming is fine. Pin
ScottM121-Feb-11 18:57
ScottM121-Feb-11 18:57 
Questionhow to change a color of particular word in the row in ssrs reports Pin
vinu.111119-Feb-11 0:51
vinu.111119-Feb-11 0:51 
AnswerRe: how to change a color of particular word in the row in ssrs reports Pin
Wendelius19-Feb-11 1:17
mentorWendelius19-Feb-11 1:17 
Hi,

You can use BackgroundColor-property to change the color and define an expression how the color is set. What comes to the color itself, you can for example resolve the color in the formula or add an extra field to your query which defines the color, like:
SELECT ...
       CASE
          WHEN LOWER(table.NameField) LIKE '%john%' THEN 'Red'
          WHEN LOWER(table.NameField) LIKE '%steve%' THEN 'Blue'
          ...
          ELSE 'White'
       END AS BackgroundColor,
       ...
FROM ...

Now each row should have a color field which you can use in the expression for the BackgroundColor-property. If you want to do this in more elegant way you can create a table for the name/color pairs and use that table for lookups and possibly create a small T-SQL function for the logic.
The need to optimize rises from a bad design.My articles[^]

QuestionSQL Express Redistribution Pin
εїзεїзεїз18-Feb-11 22:00
εїзεїзεїз18-Feb-11 22:00 
AnswerRe: SQL Express Redistribution Pin
Wendelius18-Feb-11 22:15
mentorWendelius18-Feb-11 22:15 
GeneralRe: SQL Express Redistribution Pin
εїзεїзεїз19-Feb-11 18:29
εїзεїзεїз19-Feb-11 18:29 
GeneralRe: SQL Express Redistribution Pin
Wendelius20-Feb-11 7:05
mentorWendelius20-Feb-11 7:05 
AnswerRe: SQL Express Redistribution Pin
PIEBALDconsult19-Feb-11 5:24
mvePIEBALDconsult19-Feb-11 5:24 
GeneralRe: SQL Express Redistribution Pin
Wendelius19-Feb-11 6:58
mentorWendelius19-Feb-11 6:58 
GeneralRe: SQL Express Redistribution Pin
εїзεїзεїз19-Feb-11 18:29
εїзεїзεїз19-Feb-11 18:29 
GeneralRe: SQL Express Redistribution Pin
εїзεїзεїз19-Feb-11 18:30
εїзεїзεїз19-Feb-11 18:30 
QuestionInsert Record into Access Pin
Brad Fackrell18-Feb-11 4:52
Brad Fackrell18-Feb-11 4:52 
AnswerRe: Insert Record into Access Pin
Luc Pattyn18-Feb-11 5:23
sitebuilderLuc Pattyn18-Feb-11 5:23 
GeneralRe: Insert Record into Access Pin
Brad Fackrell18-Feb-11 5:41
Brad Fackrell18-Feb-11 5:41 
GeneralRe: Insert Record into Access Pin
Wendelius18-Feb-11 5:42
mentorWendelius18-Feb-11 5:42 
AnswerRe: Insert Record into Access Pin
Wendelius18-Feb-11 5:26
mentorWendelius18-Feb-11 5:26 
GeneralRe: Insert Record into Access Pin
Brad Fackrell18-Feb-11 5:45
Brad Fackrell18-Feb-11 5:45 
QuestionHi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure [modified] Pin
Thabo@Codeproject18-Feb-11 4:52
Thabo@Codeproject18-Feb-11 4:52 
AnswerRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Wendelius18-Feb-11 5:21
mentorWendelius18-Feb-11 5:21 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Thabo@Codeproject18-Feb-11 5:54
Thabo@Codeproject18-Feb-11 5:54 

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.