Re: [sqlite] DBMS Normalization Query

2019-10-03 Thread James K. Lowden
On Wed, 2 Oct 2019 21:42:13 -0700 (MST) shivambhatele wrote: > 1. When is the process of normalization used? > 2. Boyce and Codd Normal Form > 3. 1NF, 2NF, and 3NF Good information on database theory is remarkably scarce on the web, and difficult for the beginner to distinguish from bad

Re: [sqlite] DBMS Normalization Query

2019-10-03 Thread Chris Locke
Short answer. Duplicate data in a database is bad. Take school departments. For each teacher, do you put "History", "Chemistry", "Biology" for their department? What happens if someone enters "Bioolgy" instead? So for your point #1, "as soon as duplicate data is possible". Maybe not for

[sqlite] DBMS Normalization Query

2019-10-03 Thread shivambhatele
Hello All, I am looking to explore more about normalization in DBMS. I am confused about some points. Can anyone tell me about these points? I have to google it to read about all these points and I have found some blogs like this normalization in DBMS

Re: [sqlite] sqlite database changes not committed immediately

2019-10-03 Thread Wintech Tech
Error there when database is Local system as well as in a remote Filesystem. On Thu, Oct 3, 2019 at 4:14 PM Keith Medcalf wrote: > > Those examples appear to be using a database resident on a remote > filesystem. Is the database located on a remote filesystem? > > -- > The fact that there's a

Re: [sqlite] Hello everyone, I found some strange behavior when using the Command Line Shell For SQLite.

2019-10-03 Thread Richard Damon
On 10/3/19 5:46 AM, 算 子 wrote: > In column mode, each record is shown on a separate line with the data aligned > in columns. For example: > > sqlite> .mode column > sqlite> select * from tbl1; > one two > -- -- > hello 10 > goodbye 20 >

Re: [sqlite] Hello everyone,

2019-10-03 Thread 算 子
When I open the sqlite.exe by cmd.It can print text normally(but the format is wrong). But after I run"chcp 65001"(change the cmd code to utf-8) text become random code. So,maybe the tool used WindowsOS's default code which itself running on. ___

[sqlite] Thank you, and I found the tool maybe used Windows's default code, not utf-8.

2019-10-03 Thread 算 子
When I open the sqlite.exe by cmd.It can print text normally(but the format is wrong). But after I run"chcp 65001"(change the cmd code to utf-8) text become random code. So,maybe the tool used WindowsOS's default code which itself running on. ___

Re: [sqlite] sqlite database changes not committed immediately

2019-10-03 Thread Keith Medcalf
Those examples appear to be using a database resident on a remote filesystem. Is the database located on a remote filesystem? -- The fact that there's a Highway to Hell but only a Stairway to Heaven says a lot about anticipated traffic volume. >-Original Message- >From: sqlite-users

Re: [sqlite] Hello everyone, I found some strange behavior when using the Command Line Shell For SQLite.

2019-10-03 Thread Kees Nuyt
On Thu, 3 Oct 2019 09:46:27 +, suan...@outlook.com wrote: > In column mode, each record is shown on a separate > line with the data aligned in columns. For example: > sqlite> .mode column > sqlite> select * from tbl1; > one two > -- -- > hello 10

[sqlite] sqlite database changes not committed immediately

2019-10-03 Thread Wintech Tech
Hi everyone , i have posted below Questions on other forums , Please help me solve this System.Data.SQLite error . (both are same errors) https://dba.stackexchange.com/questions/249902/sqlite-database-changes-not-commited-immediately

[sqlite] Hello everyone, I found some strange behavior when using the Command Line Shell For SQLite.

2019-10-03 Thread 算 子
In column mode, each record is shown on a separate line with the data aligned in columns. For example: sqlite> .mode column sqlite> select * from tbl1; one two -- -- hello 10 goodbye 20 sqlite> But I found,only when columns text is

Re: [sqlite] Import XLS file?

2019-10-03 Thread Dingyuan Wang
There is FreeXL (https://www.gaia-gis.it/fossil/freexl/index) may suit your need. 2019/10/2 02:58, Winfried: Simon Slavin-3 wrote 1) export your XLS data in CSV format 2) Use the SQLite shell tool to import the CSV data into your database Thanks. Is there a free (beer|speech) tool to