Jump to content

[SQLITE] Rearranging table


Recommended Posts

Thank you very much for your offer, I'm willing to take it! ;-)

Create my own MainDB to handle things better is a way, that I like.

The only columns that I need are Time_ms, VarName and VarValue. Everything else is just output of the other software that I have to take as it is.

As we are doing it from the scratch now: I'm going to have another DB, also with a column Time_ms. After sorting the first DB (like in the picture in the first) I need to JOIN it with the second one.

This will be written into a file and this will be analyzed manually in Excel!

post-38066-0-32473000-1360078276_thumb.p

Link to comment
Share on other sites

Fine. Start by downloading the latest freeware release from the SQLite Expert website. This is the best 3rd-party SQLite manager for Windows and it will save you countless hours of work.

If you're have a need to export to Excel, please consider buying the full version: it isn't very expensive, it's a one-time license fee forever and it allows export in various formats (including Excel), printing, automation, etc.

My first question is whether we're sure that DB2 will contain all the times that will appear in DB1 (using your definitions)?

If so, the best is to process DB2 before DB1.

Another question is about the expected volume of data: thousands or hunderd millions of rows.

Same for distinct values for MsgClass: will classes be fixed or unbounded? Is that a short text?

Is MsgNumber a unique integer? Is it correct to use MsgNumber as an integer primary key for a message table?

Are MsgTxt values fixed or variable. If variable will you search partial text there?

My guesses so far: messages are fixed text, have a fixed msgnumb and each has a fixed class which is a short text.

Can you answer every point?

Edited by jchd

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

  • 4 weeks later...

Fine. Start by downloading the latest freeware release from the SQLite Expert website. This is the best 3rd-party SQLite manager for Windows and it will save you countless hours of work.

If you're have a need to export to Excel, please consider buying the full version: it isn't very expensive, it's a one-time license fee forever and it allows export in various formats (including Excel), printing, automation, etc.

I'll do that!

My first question is whether we're sure that DB2 will contain all the times that will appear in DB1 (using your definitions)?

If so, the best is to process DB2 before DB1.

No, that might not be the case. The time is not in the format dd.mm.yy hh:mm:ss. Actually it is a Float! The "times" in DB1 should qual the time in DB2 by +/- xx. (need to define this).

Another question is about the expected volume of data: thousands or hunderd millions of rows.

Same for distinct values for MsgClass: will classes be fixed or unbounded? Is that a short text?

Is MsgNumber a unique integer? Is it correct to use MsgNumber as an integer primary key for a message table?

Are MsgTxt values fixed or variable. If variable will you search partial text there?

About 50.000 maximum in each file.

MsgClass is an Integer

MsgNumber is an Integer, together with the time is unique

MsgText is variable (or the first 1-10 sign are variable). Not searching for text!

My guesses so far: messages are fixed text, have a fixed msgnumb and each has a fixed class which is a short text.

Away from the messages you are right!

Can you answer every point?

Link to comment
Share on other sites

I see. Could you please post either publicly here or in MP a good sample of both sources (within the same time range) so that I can have a look at how best you can design an efficient schema? Few hundreds to one thousand entries will do, expecting the sample will cover most cases including missing entries.

Also give one or two samples of timestamp equivalence between your Julian date timestamps (your floats) and their YMD hms.s equivalent.

Finally some hint about +/- xx would be useful. I expect that corresponding entries in both sources will match on the same timescale, besides +/-xx and missing entries.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...