Skip to content

Commit 0306cb4

Browse files
committed
v2.4
added all navigation urls, added NoSQL, simple
1 parent 7e18ad0 commit 0306cb4

6 files changed

Lines changed: 467 additions & 232 deletions

File tree

README.md

Lines changed: 67 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,28 @@ https://rawgit.com/unruledboy/DatabaseStack/master/ux/DatabaseStack.htm
3939

4040
- Database
4141
- RDBMS
42+
- Simple
43+
- [dBase ;-)](https://en.wikipedia.org/wiki/DBase)
44+
- Foxbase ;-)
45+
- [FoxPro;-)](https://en.wikipedia.org/wiki/FoxPro)
46+
- [Visual FoxPro;-)](https://msdn.microsoft.com/en-us/vfoxpro/bb190225.aspx)
47+
- [Access](https://products.office.com/en-us/access)
48+
- [Sqlite](https://www.sqlite.org/)
4249
- Basics
43-
- Normalisation
50+
- [Edgar F. Codd](https://en.wikipedia.org/wiki/Edgar_F._Codd)
51+
- [Object/relational mapping (O/RM)](https://en.wikipedia.org/wiki/Object-relational_mapping)
52+
- [Normalisation](https://en.wikipedia.org/wiki/Database_normalization)
4453
- Normal Form
4554
- First Normal Form (1NF)
4655
- Second Normal Form (2NF)
4756
- Third Normal Form (3NF)
48-
- Transaction
49-
- ACID
50-
- Atomicity
51-
- Consistency
52-
- Isolation
53-
- Durability
54-
- MS SQL Server
57+
- [Transaction](https://en.wikipedia.org/wiki/Database_transaction)
58+
- [ACID](https://en.wikipedia.org/wiki/ACID)
59+
- Atomicity
60+
- Consistency
61+
- Isolation
62+
- Durability
63+
- [MS SQL Server](http://www.microsoft.com/en-us/server-cloud/products/sql-server/)
5564
- SQL OS
5665
- Memory Management
5766
- Buffer Pool
@@ -239,6 +248,15 @@ https://rawgit.com/unruledboy/DatabaseStack/master/ux/DatabaseStack.htm
239248
- Security Levels
240249
- Linked Server
241250
- Service Broker
251+
- Basics
252+
- Transactional message queue
253+
- Objects
254+
- Message
255+
- Contract
256+
- Queue
257+
- Service
258+
- Dialog
259+
- Conversation
242260
- Standard
243261
- ANSI 92
244262
- Languages
@@ -332,7 +350,7 @@ https://rawgit.com/unruledboy/DatabaseStack/master/ux/DatabaseStack.htm
332350
- Management
333351
- SQL Server Management Studio (SSMS)
334352
- SQL Server Command Line Util (sqlcmd)
335-
- SQL Monitor ;-)
353+
- [SQL Monitor ;-)](https://github.com/unruledboy/SQLMonitor)
336354
- Maintenance
337355
- Maintenance Plan
338356
- Logs
@@ -378,12 +396,18 @@ https://rawgit.com/unruledboy/DatabaseStack/master/ux/DatabaseStack.htm
378396
- Connectivity
379397
- ADO.NET
380398
- ODBC
381-
- Oracle
382-
- MySQL
383-
- PostgreSQL
384-
- Informix
399+
- JDBC
400+
- Security
401+
- Access Control
402+
- SQL Inject
403+
- Backup
404+
- [Oracle](https://www.oracle.com/database/)
405+
- [MySQL](https://www.mysql.com/)
406+
- [PostgreSQL](http://www.postgresql.org/)
407+
- [Informix](http://www.ibm.com/software/data/informix)
408+
- [DB2](http://www.ibm.com/software/data/db2)
385409
- Cloud
386-
- Azure
410+
- [Azure](https://azure.microsoft.com)
387411
- Database
388412
- Redis Cache
389413
- Storage
@@ -394,7 +418,34 @@ https://rawgit.com/unruledboy/DatabaseStack/master/ux/DatabaseStack.htm
394418
- Files and Disks
395419
- StorSimple
396420
- SQL Data Warehouse
397-
- NoSQL
398-
- Azure Document DB
421+
- [NoSQL](https://en.wikipedia.org/wiki/NoSQL)
422+
- Concepts
423+
- XML/JSON based
424+
- Eventually Consistency
425+
- Limitation
426+
- [CAPS/Brewer's theorem](https://en.wikipedia.org/wiki/CAP_theorem)
427+
- Consistency
428+
- Availability
429+
- Partition tolerance
430+
- Lack of join
431+
- Lack of true ACID
432+
- Types
433+
- Column
434+
- [Cassandra](http://cassandra.apache.org/)
435+
- [HBase](http://hbase.apache.org/)
436+
- Key/Value
437+
- [CouchDB](http://couchdb.apache.org/)
438+
- [AWS Dynamo](https://aws.amazon.com/dynamodb/)
439+
- [MemcacheDB](http://memcachedb.org/)
440+
- [Redis](http://redis.io/)
441+
- Document
442+
- [Apache CouchDB](http://couchdb.apache.org/)
443+
- [Couchbase](http://www.couchbase.com/)
444+
- [Azure DocumentDB](http://azure.microsoft.com/en-us/services/documentdb/)
445+
- [MongoDB](https://www.mongodb.org/)
446+
- Graph
447+
- [Neo4J](http://neo4j.com/)
448+
- Object
449+
- [ObjectStore](http://www.objectstore.com/)
399450

400451
<!--BUILD_END-->

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ var queueReady = ["server"];
1212
var port = process.env.PORT || 3000;
1313
var httpServer = "http://127.0.0.1:" + port + "/";
1414

15-
var pageWidth = 2800; // Magic number!
16-
var pageHeight = 4100;
15+
var pageWidth = 3000; // Magic number!
16+
var pageHeight = 4800;
1717

1818
String.prototype.repeat = function(count) {
1919
return new Array(count + 1).join(this);

preview.png

121 KB
Loading

ux/DatabaseStack.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<div class="container">
9393
<header>
9494
<div class="left">
95-
<h1><a href="https://github.com/unruledboy/DatabaseStack" target="_blank">Database Stack v2.3</a></h1>
95+
<h1><a href="https://github.com/unruledboy/DatabaseStack" target="_blank">Database Stack v2.4</a></h1>
9696
</div>
9797
<div class="right">
9898
<p><a href="http://github.com/unruledboy">Wilson Chen (twitter@unruleboy) - unruledboy@gmail.com</a></p>

0 commit comments

Comments
 (0)