Skip to content
#

Database

A database is a structured set of data held in a computer, most often a server. Databases use a database management system (DBMS) that interacts with users, similar to a lookup table. Modern databases are designed to allow for creation, querying, updating, and administration of the data it holds.

Here are 11,232 public repositories matching this topic...

sheetjs
KurtMar
KurtMar commented Sep 12, 2019

I noticed a bug in the html_to_sheet function. When reading cells that are empty, the cell index is correctly incremented, but if the cell has HTML tags and is observed to be empty after stripping the tags, the cell index is not incremented. This results in misalignment of the subsequent cells:

https://github.com/SheetJS/js-xlsx/blob/e3c5eac99c3b2be6929adfca455c1be87fab792b/xlsx.js#L18956-L18

RaduBerinde
RaduBerinde commented Dec 16, 2019

See example below. Best plan is a lookup join, but we don't get that with the semi-join. The reason is that each side is projecting a tuple, and we are constraining those to be equal. A rule that detects this projection and converts to multiple equalities should fix this.

exec-ddl
CREATE TABLE ab (
  a INT,
  b INT,
  PRIMARY KEY (a,b)
)
----


exec-ddl
CREATE TABLE cd (
  c INT
aaronfulkerson
aaronfulkerson commented Aug 12, 2019

Issue type:

[ ] question
[ ] bug report
[ ] feature request
[x] documentation issue

Database system/driver:

[ ] cordova
[ ] mongodb
[ ] mssql
[ ] mysql / mariadb
[ ] oracle
[x] postgres
[ ] cockroachdb
[ ] sqlite
[ ] sqljs
[ ] react-native
[ ] expo

TypeORM version:

[x] latest
[ ] @next
[ ] 0.x.x (or put your version here)

fEyebrow
fEyebrow commented May 10, 2019

Describe the bug
When the elevated database user account does not have permission to create a schema, it cannot establish a connection with an existing database.

But when I provided the root account, I successfully established a connection with the database, but prisma created a schema called prisma.
Look like this:
![image](https://user-images.githubusercontent.com/18180417/57507662-fc

SamuelWeibel
SamuelWeibel commented Oct 4, 2019

Issue

When using a map/reduce function that emits { _id: null }, the returned doc is the "emitting" document instead of null.

The result is what I would expect when _id is not defined; but _id is defined and set to null.

Info

  • Environment: browser
  • Platform: Chrome
  • Adapter: IndexedDB
  • Server: CouchDB 2.3.1

Reproduce

The following design doc (modified to

dgraph
KOLANICH
KOLANICH commented Jan 11, 2019

Sometimes it is needed to store compressed data in the DB. Unfortunately not all the DBs have built-in compression and FUSE compressed FSes are not available for every OS. So it may make sense to store compressed binary blobs in the DB.

Unfortunately when one sees them in DBeaver he sees them compressed, but often they are needed uncompressed. So it'd be nice to have a feature to decompress the

mitra42
mitra42 commented Mar 15, 2019

There appears to be a race condition....

If you are trying to do a: user.auth(pair) then user.get.put; user.leave

Then it works if, and only if, you wait for the ack on the put,
If you don't wait for the ack, then you get a "No! Unverified Data" message, probably because with Gun's state its no longer logged in.

Personally ... I think its a bug/design flaw that Gun uses state in the g

AndyFWealthfront
AndyFWealthfront commented Apr 10, 2019

Multi-line queries have a prompt_continuation (or not currently, due to issue 681, but that's beside the point). But even with prompt_continuation set to an empty string, it starts the next line indented, even when it's just due to wrapping at the edge of the terminal window:

db> select "example text that wraps onto the nex
    t line";

I often copy/paste my query fr

Wikipedia
Wikipedia

Related Topics

yii composer mysql
You can’t perform that action at this time.