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 10,698 public repositories matching this topic...

js-xlsx
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

PatButlerTR
PatButlerTR commented Oct 9, 2019

Describe the bug
POST to /api/database will overwrite an existing database instead of erroring

To Reproduce
Create a database with a POST to /api/database.
Run the same call again.

Expected behavior
Expect Metabase to error and say, "Database with name 'foo' already exists"

Actual behavior
Metabase gives another 200 and will overwrite any previous database config with

jordanlewis
jordanlewis commented Oct 4, 2019

It should be possible to cast JSON scalars to their corresponding SQL types, but it currently is not possible.

We should support:

JSON numeric -> int
JSON numeric -> float
JSON numeric -> decimal
JSON numeric -> string

This change should be pretty straightforward - CastExpr.Eval should be edited in eval.go to add the missing cases, and tests added to `pkg/sql/sem/tree/testdata/eval

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

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)

dgraph
surpavan
surpavan commented Dec 5, 2018

Some scripts are very big and editor will take long time to load into UI - for such scripts we save in drive and run them from workbench or some other tool - just by selecting the file and running it without loading it to editor.

Can we get that feature - probably in tools or some relevant location when we right click on the database name - to run the sql file on selected connection/DB inste

los93sol
los93sol commented Aug 29, 2019

Describe what is not working as expected.

Using EFCore to timeshift timestamps does not work as expected.

If you are seeing an exception, include the full exceptions details (message and stack trace).

Exception message:
System.Data.SqlClient.SqlException (0x80131904): Conversion failed when converting date and/or time from character string.

Steps to reproduce

 
apnewberry
apnewberry commented Mar 5, 2019

The result set has more than 1000 rows.
Do you want to continue? [y/N]:

When I say N, I have to redo the query with a LIMIT clause. This can be annoying to wait when the query took a while. Instead of just [y/N] I'd like an option to display the first 1000 rows.

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

You can’t perform that action at this time.