Click here to Skip to main content
15,949,686 members
Home / Discussions / Database
   

Database

 
PinnedHOW TO ANSWER A QUESTION PinPopular
Chris Maunder16-Jul-09 3:10
cofounderChris Maunder16-Jul-09 3:10 
PinnedHow to get an answer to your question PinPopular
Chris Maunder10-Nov-05 16:30
cofounderChris Maunder10-Nov-05 16:30 
QuestionMigrate structure and data from SQL Server to SQLite Pin
_Flaviu24-Jul-24 5:11
_Flaviu24-Jul-24 5:11 
AnswerRe: Migrate structure and data from SQL Server to SQLite Pin
Richard MacCutchan24-Jul-24 5:15
mveRichard MacCutchan24-Jul-24 5:15 
GeneralRe: Migrate structure and data from SQL Server to SQLite Pin
_Flaviu24-Jul-24 20:49
_Flaviu24-Jul-24 20:49 
GeneralRe: Migrate structure and data from SQL Server to SQLite Pin
Richard Deeming24-Jul-24 21:09
mveRichard Deeming24-Jul-24 21:09 
GeneralRe: Migrate structure and data from SQL Server to SQLite Pin
_Flaviu24-Jul-24 22:57
_Flaviu24-Jul-24 22:57 
GeneralRe: Migrate structure and data from SQL Server to SQLite Pin
Richard Deeming25-Jul-24 2:33
mveRichard Deeming25-Jul-24 2:33 
GeneralRe: Migrate structure and data from SQL Server to SQLite Pin
_Flaviu25-Jul-24 4:11
_Flaviu25-Jul-24 4:11 
AnswerRe: Migrate structure and data from SQL Server to SQLite Pin
_Flaviu24-Jul-24 23:20
_Flaviu24-Jul-24 23:20 
QuestionVb6 and sqlserver 2000 Pin
ahmed ali Apr20217-May-24 17:31
ahmed ali Apr20217-May-24 17:31 
AnswerRe: Vb6 and sqlserver 2000 Pin
Victor Nijegorodov7-May-24 20:07
Victor Nijegorodov7-May-24 20:07 
AnswerRe: Vb6 and sqlserver 2000 Pin
Richard Deeming7-May-24 21:32
mveRichard Deeming7-May-24 21:32 
GeneralRe: Vb6 and sqlserver 2000 Pin
jschell9-May-24 15:35
jschell9-May-24 15:35 
GeneralRe: Vb6 and sqlserver 2000 Pin
Richard Deeming9-May-24 20:58
mveRichard Deeming9-May-24 20:58 
GeneralRe: Vb6 and sqlserver 2000 Pin
jschell11-May-24 9:43
jschell11-May-24 9:43 
GeneralRe: Vb6 and sqlserver 2000 Pin
Victor Nijegorodov11-May-24 21:10
Victor Nijegorodov11-May-24 21:10 
GeneralRe: Vb6 and sqlserver 2000 Pin
Dave Kreskowiak10-May-24 13:31
mveDave Kreskowiak10-May-24 13:31 
GeneralRe: Vb6 and sqlserver 2000 Pin
Richard Deeming12-May-24 21:22
mveRichard Deeming12-May-24 21:22 
GeneralRe: Vb6 and sqlserver 2000 Pin
Dave Kreskowiak13-May-24 3:03
mveDave Kreskowiak13-May-24 3:03 
QuestionSQLite and Firefox Browser 68.0.2 (note: current FFB is now 72.0.2) and what I stand to lose if I update. Pin
RedDk6-May-24 8:56
RedDk6-May-24 8:56 
AnswerRe: SQLite and Firefox Browser 68.0.2 (note: current FFB is now 72.0.2) and what I stand to lose if I update. Pin
Peter_in_27806-May-24 15:18
professionalPeter_in_27806-May-24 15:18 
AnswerRe: SQLite and Firefox Browser 68.0.2 (note: current FFB is now 72.0.2) and what I stand to lose if I update. Pin
Richard Deeming6-May-24 21:44
mveRichard Deeming6-May-24 21:44 
QuestionLooking for a Better Database Solution for Trading Systems Pin
Rene Rose 202120-Apr-24 5:53
Rene Rose 202120-Apr-24 5:53 
I develop trading systems for stocks and other securities. To manage price data from various sources, I use a custom program written in VB.Net. This program maintains a LiteDB database for each underlying, resulting in several dozen database files.

I've found that LiteDB is very slow when inserting large amounts of data, and since I import a significant amount of data, I'm looking for a more efficient solution. Currently, I'm considering switching to a relational DB system like SQLite or MS SQL Server.

My data model includes a class for price data from CSV files, which contains the following fields:

"Identifier" (text)
"TimeStamp" (date/time)
"Open", "High", "Low", "Close" (single precision floating point numbers)
"Size" (integer)

The issue is that the identifier is identical for several hundred thousand data points, and the timestamps and price values often repeat. Since this data is distributed across various instruments, duplicate entries occur.

One possible solution would be to distribute this data class across multiple tables to avoid duplicate entries. However, I'm concerned that this may cause performance issues when inserting several hundred thousand data points.

Has anyone had similar experiences or advice to share?

Thanks in advance!
AnswerRe: Looking for a Better Database Solution for Trading Systems Pin
Jeremy Falcon20-Apr-24 8:15
professionalJeremy Falcon20-Apr-24 8:15 

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.