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

Database

 
AnswerRe: Fuzzy word Search ......... Pin
Eddy Vluggen7-Jul-09 23:47
professionalEddy Vluggen7-Jul-09 23:47 
QuestionOuter Join Problem Pin
prubyholl7-Jul-09 22:37
professionalprubyholl7-Jul-09 22:37 
AnswerRe: Outer Join Problem Pin
www.Developerof.NET8-Jul-09 1:35
www.Developerof.NET8-Jul-09 1:35 
GeneralRe: Outer Join Problem Pin
prubyholl8-Jul-09 7:36
professionalprubyholl8-Jul-09 7:36 
QuestionOne row at a time from a database table Pin
LucBite7-Jul-09 4:11
LucBite7-Jul-09 4:11 
AnswerRe: One row at a time from a database table Pin
Niladri_Biswas7-Jul-09 5:28
Niladri_Biswas7-Jul-09 5:28 
QuestionSubtotaling.. Am I doing it the wrong way?? Pin
Muammar©7-Jul-09 3:20
Muammar©7-Jul-09 3:20 
AnswerRe: Subtotaling.. Am I doing it the wrong way?? Pin
DoctorMick7-Jul-09 5:52
DoctorMick7-Jul-09 5:52 
You could do your sum based on the first 5 characters of the code but that would be a bad idea.

Alternatively, you could change your database structure a little and add a Category table, add a relationship to the budget lines table and only store the final part of the code in your budget lines table.

Category

ID  Code
--  ----
1   1.1.1
2   2.2.2
etc

BudgetLine

CategoryCode  SubCode
------------  -------
1             1        (gives 1.1.1.1)
1             2        (gives 1.1.1.2)
2             1        (gives 2.2.2.1)
2             2        (gives 2.2.2.2)


I'm sure that won't be perfect for what you need but hopefully it'll give you the right idea.
GeneralRe: Subtotaling.. Am I doing it the wrong way?? Pin
Muammar©7-Jul-09 9:25
Muammar©7-Jul-09 9:25 
GeneralRe: Subtotaling.. Am I doing it the wrong way?? Pin
DoctorMick7-Jul-09 21:59
DoctorMick7-Jul-09 21:59 
GeneralRe: Subtotaling.. Am I doing it the wrong way?? Pin
Muammar©7-Jul-09 9:35
Muammar©7-Jul-09 9:35 
GeneralRe: Subtotaling.. Am I doing it the wrong way?? Pin
David Skelly7-Jul-09 22:58
David Skelly7-Jul-09 22:58 
QuestionMultiple columns or one formatted column ? [modified] Pin
Hakmeh Mohannad7-Jul-09 0:48
Hakmeh Mohannad7-Jul-09 0:48 
AnswerRe: Multiple columns or one formatted column ? Pin
dan!sh 7-Jul-09 1:15
professional dan!sh 7-Jul-09 1:15 
AnswerRe: Multiple columns or one formatted column ? Pin
Eddy Vluggen7-Jul-09 1:17
professionalEddy Vluggen7-Jul-09 1:17 
AnswerRe: Multiple columns or one formatted column ? Pin
Jeremy Likness9-Jul-09 8:34
professionalJeremy Likness9-Jul-09 8:34 
QuestionSQL Query Pin
theCPkid6-Jul-09 15:41
theCPkid6-Jul-09 15:41 
AnswerRe: SQL Query Pin
Niladri_Biswas6-Jul-09 16:05
Niladri_Biswas6-Jul-09 16:05 
AnswerRe: SQL Query Pin
Niladri_Biswas6-Jul-09 17:00
Niladri_Biswas6-Jul-09 17:00 
GeneralRe: SQL Query Pin
theCPkid6-Jul-09 22:52
theCPkid6-Jul-09 22:52 
AnswerRe: SQL Query Pin
Mycroft Holmes6-Jul-09 20:06
professionalMycroft Holmes6-Jul-09 20:06 
GeneralRe: SQL Query Pin
Paul Unsworth6-Jul-09 22:19
Paul Unsworth6-Jul-09 22:19 
GeneralRe: SQL Query Pin
Mycroft Holmes6-Jul-09 23:07
professionalMycroft Holmes6-Jul-09 23:07 
GeneralRe: SQL Query Pin
theCPkid6-Jul-09 22:48
theCPkid6-Jul-09 22:48 
QuestionT-SQL USE with a variable Pin
TheComputerMan6-Jul-09 4:55
TheComputerMan6-Jul-09 4:55 

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.