Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saghosh8/securebankdbdata
A simple database system for managing customer accounts, transactions, and loans. It includes secure transaction tracking, loan interest calculations, and audit logs.
https://github.com/saghosh8/securebankdbdata
database mysql sql sql-query sql-server
Last synced: about 1 month ago
JSON representation
A simple database system for managing customer accounts, transactions, and loans. It includes secure transaction tracking, loan interest calculations, and audit logs.
- Host: GitHub
- URL: https://github.com/saghosh8/securebankdbdata
- Owner: saghosh8
- Created: 2024-09-06T14:54:44.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-06T15:16:08.000Z (4 months ago)
- Last Synced: 2024-10-19T10:14:56.993Z (2 months ago)
- Topics: database, mysql, sql, sql-query, sql-server
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Banking Transaction System
This project is a database system designed to handle customer accounts, transactions, and loans in a banking environment. It supports secure data management, real-time transaction tracking, and audit logs for financial operations.
Here’s a structure and content outline for a **Banking Transaction System** project repository on GitHub:
## Repository Structure
```
Banking-Transaction-System/
│
├── README.md
├── database/
│ ├── schema.sql
│ ├── transactions.sql
│ ├── loans.sql
│ ├── triggers.sql
│ └── stored_procedures.sql
├── src/
│ ├── transactions/
│ │ ├── calculate_interest.sql
│ │ ├── transfer_funds.sql
│ │ └── transaction_log.sql
│ ├── customers/
│ │ └── customer_data.sql
│ └── loans/
│ └── loan_calculation.sql
├── tests/
│ ├── test_transactions.sql
│ ├── test_loans.sql
│ └── test_data_integrity.sql
└── docs/
├── database_design.md
├── user_guide.md
└── system_requirements.md
```## Key Features
- Management of customer accounts, transactions, and loans.
- SQL scripts for calculating loan interest, transaction history, and generating monthly statements.
- Stored procedures for transferring funds between accounts.
- Triggers for logging transactions and ensuring data integrity.## Repository Structure
- **/database**: Contains the schema, transaction, loan, and stored procedure SQL scripts.
- **/src**: SQL scripts related to specific business operations (transactions, customers, loans).
- **/tests**: Unit tests to validate the functionality and integrity of the database.
- **/docs**: Documentation for database design, user guide, and system requirements.## Installation
1. Clone the repository:
`git clone [email protected]:saghosh8/SecureBankDBData.git
2. Import the database schema:
`mysql -u [username] -p [database_name] < database/schema.sql`## Usage
1. To transfer funds:
`CALL transfer_funds(1001, 1002, 500.00);`
2. To calculate interest on a loan:
`CALL calculate_interest(loan_id);`