July 27, 2013 at 8:44 am
Hello everyone i am developing an accounts package for my company using Sql Server 2008 and VB.Net.
I need some help regarding the database design.
I have the following tables
AccountsGroupMaster
GroupIdint
GroupNamenvarchar(50)
ParentGroupIdint
CatIdint
PrimaryGroupbit
CreatedByUsernvarchar(50)
CreatedOndatetime
The above table will store the Groups for the accounts eg: Current Assets etc.
Accounts Table
AccCodenvarchar(6)
AccountNamenvarchar(30)
ParentAccnvarchar(6)
GroupIdint
The above table stores the Accounts/Ledgers .
VoucherMain
VoucherNobigint
VoucherDatedatetime
DebitCredit int(0 for Credit 1 for Debit)
AccCodenvarchar(6) (Account Code to be debited/Credited)
UserIDnvarchar(30)
VoucherDetails
VoucherNobigint
SlNoint
AccCodenvarchar(6) (Debit this account if account in VoucherMain credited/ Credit this account if account in VoucherMain Debited)
Amountdecimal(18, 2)
Narrationnvarchar(MAX)
The above two tables store the transactions.The above two tables linked by the VoucherNo columns
Now my question is whether i should maintain all the bank accounts in the accounts table or should i have a separate table for the bank accounts.
As each bank account should have its respective ledgers.
Please help me in the design of this database.
thanks
July 27, 2013 at 12:00 pm
Help needed,,,,,,please
July 29, 2013 at 5:12 pm
mandar.dasgupta (7/27/2013)
...Now my question is whether i should maintain all the bank accounts in the accounts table
'course you should.
_____________________________________
Pablo (Paul) Berzukov
Author of Understanding Database Administration available at Amazon and other bookstores.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.August 3, 2013 at 12:00 pm
Thanks PaulB.
I have worked a little more and i showed it to our Accounts Head and he was reasonbly satisfied with it. However i ran into a little bit of trouble regarding vouchers with multiple debits and multiple credits.
My design takes care of Single Debit and multiple credits and single Credit and multiple debits.But i cant be sure in case of multiple debits and multiple credits.
eg.
VoucherMain
VoucherNoVoucherDateDrCrVTypeAccCode
2 2013-07-23 Credit 1 000002
VoucherDetails
VoucherNoSlNoAccCodeAmountNarration
2 10000056000.00Purchase of table.
2 2 000012 5000.00 Purchase of drinks
In the above example the account/Ledger with code 000002 is credited with
Rs.11000 and the account/Ledger with code 000005 is debited with 6000
and the account/Ledger with code 000012 is debited with 5000.
The DrCr column specifies wether to credit or debit the account in VoucherMain table and the opposite happens to the accounts in the VoucherDetails Table.
The tables are linked with the voucherNo column.
So the above design is capable of handling single debit multiple credits
or single credit multiple debits.
I cant be sure about the multiple debits and multiple credit situation please suggest.
August 5, 2013 at 6:02 am
mandar.dasgupta (8/3/2013)
Thanks PaulB.I have worked a little more and i showed it to our Accounts Head and he was reasonbly satisfied with it. However i ran into a little bit of trouble regarding vouchers with multiple debits and multiple credits.
My design takes care of Single Debit and multiple credits and single Credit and multiple debits.But i cant be sure in case of multiple debits and multiple credits.
eg.
VoucherMain
VoucherNoVoucherDateDrCrVTypeAccCode
2 2013-07-23 Credit 1 000002
VoucherDetails
VoucherNoSlNoAccCodeAmountNarration
2 10000056000.00Purchase of table.
2 2 000012 5000.00 Purchase of drinks
In the above example the account/Ledger with code 000002 is credited with
Rs.11000 and the account/Ledger with code 000005 is debited with 6000
and the account/Ledger with code 000012 is debited with 5000.
The DrCr column specifies wether to credit or debit the account in VoucherMain table and the opposite happens to the accounts in the VoucherDetails Table.
The tables are linked with the voucherNo column.
So the above design is capable of handling single debit multiple credits
or single credit multiple debits.
I cant be sure about the multiple debits and multiple credit situation please suggest.
I see no reason why table VoucherDetails couldn't describe multiple debits and credits.
_____________________________________
Pablo (Paul) Berzukov
Author of Understanding Database Administration available at Amazon and other bookstores.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply