title
stringlengths 1
544
โ | parent
stringlengths 0
57
โ | created
stringlengths 11
12
โ | editor
stringclasses 1
value | creator
stringclasses 4
values | edited
stringlengths 11
12
โ | refs
stringlengths 0
536
โ | text
stringlengths 1
26k
| id
stringlengths 32
32
|
---|---|---|---|---|---|---|---|---|
Mongo DB Clone
|
Mongo Database Usage
|
Sep 23, 2020
| null | null | null | null |
### Deprecated
- db.copyDatabase()
- db.cloneDatabase()
### Current Clone
- default use `dump` folder
```typemongodump --uri='mongodb+srv://'# change db namemongorestore --uri='mongodb+srv://'```
> [mongodump - MongoDB Database Tools 100.1.1](https://docs.mongodb.com/database-tools/mongodump/#mongodump-example-copy-clone-database)
> [mongodump - MongoDB Database Tools 100.1.1](https://docs.mongodb.com/database-tools/mongodump/)
> [mongorestore - MongoDB Database Tools 100.1.1](https://docs.mongodb.com/database-tools/mongorestore/)
|
f1fd1cf9444f4082b4f04fa2ac80c255
|
mongodb windows
|
Mongodb init per os
|
Mar 17, 2020
| null | null | null | null |
firewall command
> [MongoDB(๋ชฝ๊ณ ๋๋น) - windows 10์์ ์ค์นํ๊ธฐ](https://twinw.tistory.com/205)
```typenetsh advfirewall firewall add rule name="Open mongod port 27017" dir=in action=allow protocol=TCP localport=27017```
> [Configure Windows netsh Firewall for MongoDB - MongoDB Manual](https://docs.mongodb.com/manual/tutorial/configure-windows-netsh-firewall/)
|
56aec629e4b7492eb4117f2dbdd576d1
|
Mongoose
|
Mongo ODMs
|
Mar 26, 2020
| null | null | null | null |
### Mongoose Usage
|Title|
|:-:|
|[Mongoose Schema](https://texonom.com/mongoose-schema-e37a673a3198441d84027202022a53ce)|
|[Mongoose Model](https://texonom.com/mongoose-model-63a4dd4902e2482bbfbccfeb5e24068f)|
|[Mongoose Document](https://texonom.com/mongoose-document-4832c867701d4951a6532b80073002c5)|
|[Mongoose Connection](https://texonom.com/mongoose-connection-b8cc792e528246c0a9d1cc66665533f7)|
### Mongoose Tool
|Title|
|:-:|
|[mongoose-auto-increment](https://texonom.com/mongoose-auto-increment-7ea6b11b2307482d85cdcb5cda448366)|

### good notion explaination
> [Node.js(express)์ MongoDB ์ฐ๋ RESTful API - Mongoose | PoiemaWeb](https://poiemaweb.com/mongoose)
### schema usage
> [(MongoDB) Mongoose(๋ชฝ๊ตฌ์ค) ์คํค๋ง(Schema)](https://www.zerocho.com/category/MongoDB/post/59a1870210b942001853e250)
### constraint
> [[MongoDB] MongoDB์ ์ ์ฝ์ฌํญ๋ค. (MongoDB limits thresholds)](https://bloodguy.tistory.com/entry/MongoDB-MongoDB%EC%9D%98-%EC%A0%9C%EC%95%BD%EC%82%AC%ED%95%AD%EB%93%A4-MongoDB-limits-thresholds)
### limit
> [Mongoose find and return only a part of the document](https://stackoverflow.com/questions/35827979/mongoose-find-and-return-only-a-part-of-the-document)
|
1dd2af4c70254bfb8fc48ffe87dfbfab
|
mongoose-auto-increment
|
Mongoose Tool
|
Apr 1, 2020
| null | null | null | null |
```typeimport autoIncrement from "mongoose-auto-increment"```
```typeautoIncrement.initialize(mongoose.connection)```
```typeschema.plugin(autoIncrement.plugin, { model: modelName, field: "increment", startAt: 50, increment: 1 })```
|
7ea6b11b2307482d85cdcb5cda448366
|
Mongoose Connection
|
Mongoose Usage
|
Mar 31, 2020
| null | null | null | null |
```typemongoose .connect(process.env.DB_URL, { useCreateIndex: true, useNewUrlParser: true, useUnifiedTopology: true, useFindAndModify: false }) .catch((err) => { logger.error(err) process.exit(1) })```
|
b8cc792e528246c0a9d1cc66665533f7
|
Mongoose Document
|
Mongoose Usage
|
Mar 27, 2020
| null | null | null | null |
๋ํ๋จผํธ์ ๋ฉ์๋๋ฅผ Document instance methods
### Safe Update
> [Untitled](https://blog.ull.im/engineering/2019/03/08/update-on-mongodb-and-mongoose.html)
|
4832c867701d4951a6532b80073002c5
|
Mongoose Model
|
Mongoose Usage
|
Mar 27, 2020
| null | null | null | null |
### Mongoose Models
|Title|
|:-:|
|[Mongoose Model discriminator](https://texonom.com/mongoose-model-discriminator-689c97e0e26540f6b6814a86d0529070)|
Name Convention - ๋๋ฌธ์ ์์
[quary](https://texonom.com/quary-5a06bd39003c46a4b8af343fd96f5570)
static model m
๋ชจ๋ธ์ ๋ฉ์๋๋ฅผ Statics model method ๋ผ๊ณ ํจ
|
63a4dd4902e2482bbfbccfeb5e24068f
|
Mongoose Schema
|
Mongoose Usage
|
Mar 27, 2020
| null | null | null | null |
์ ์๋ ์ ๋ค๋ง ๋ค์ด๊ฐ๋ค
[Mongoose Schema url](https://texonom.com/mongoose-schema-url-cfeea1d72bae4d419512a771051d71bb)
[Mongoose Schema type](https://texonom.com/mongoose-schema-type-fb782e526f3b4d4caa1f3ab2d1083101)
[Mongoose Schema pre](https://texonom.com/mongoose-schema-pre-e6367778e84345da8d968808c295f280)
[Mongoose Schema post](https://texonom.com/mongoose-schema-post-df9931c7af51484b875f0c13d33e9554)
[Mongoose Schema method](https://texonom.com/mongoose-schema-method-01ae854f42284989989e47863426b926)
[Mongoose Schema virtual](https://texonom.com/mongoose-schema-virtual-a990c0940aba4674b07d66eedc9f57ae)
[Mongoose Schema statics method](https://texonom.com/mongoose-schema-statics-method-aa35151c924c40db962c276aa6c5aff9)
[Mongoose Schema version](https://texonom.com/mongoose-schema-version-078f2f408a434a4aa6931baca31bc6f1)
[mongoose schema options](https://texonom.com/mongoose-schema-options-2734e8f12fb1415991410acafda957e7)
> [mongoose "_id" field can't be deleted](https://stackoverflow.com/questions/29407567/mongoose-id-field-cant-be-deleted)
|
e37a673a3198441d84027202022a53ce
|
quary
|
Mongoose Model
| null | null | null | null | null |
5a06bd39003c46a4b8af343fd96f5570
|
|
Mongoose Model discriminator
|
Mongoose Models
|
Mar 31, 2020
| null | null | null | null |
### use post.discriminator instead of mongoose
> [how mongoose discriminator can be helpful in databases?](https://stackoverflow.com/questions/48165264/how-mongoose-discriminator-can-be-helpful-in-databases)
|
689c97e0e26540f6b6814a86d0529070
|
Mongoose Schema method
|
Mongoose Schema
| null | null | null | null | null |
01ae854f42284989989e47863426b926
|
|
mongoose schema options
|
Mongoose Schema
| null | null | null | null | null |
```typeschema.set('toObject', { flattenMaps: true })```
> [Mongoose overwriting updatedAt on new records when it's provided ยท Issue #7357 ยท Automattic/mongoose](https://github.com/Automattic/mongoose/issues/7357)
|
2734e8f12fb1415991410acafda957e7
|
Mongoose Schema post
|
Mongoose Schema
| null | null | null | null | null |
df9931c7af51484b875f0c13d33e9554
|
|
Mongoose Schema pre
|
Mongoose Schema
| null | null | null | null | null |
e6367778e84345da8d968808c295f280
|
|
Mongoose Schema statics method
|
Mongoose Schema
| null | null | null | null | null |
aa35151c924c40db962c276aa6c5aff9
|
|
Mongoose Schema type
|
Mongoose Schema
| null | null | null | null | null |

or another schema
|
fb782e526f3b4d4caa1f3ab2d1083101
|
Mongoose Schema url
|
Mongoose Schema
| null | null | null | null | null |
> [How to store URL value in Mongoose Schema?](https://stackoverflow.com/questions/47134609/how-to-store-url-value-in-mongoose-schema)
|
cfeea1d72bae4d419512a771051d71bb
|
Mongoose Schema version
|
Mongoose Schema
| null | null | null | null | null |
> [What is the "__v" field in Mongoose](https://stackoverflow.com/questions/12495891/what-is-the-v-field-in-mongoose)
|
078f2f408a434a4aa6931baca31bc6f1
|
Mongoose Schema virtual
|
Mongoose Schema
| null | null | null | null | null |
```typeuserSchema.virtual('detail').get(function() { return ``;});```
- double child
> [node.js mongoose์์์ virtual model](https://kjhweb.tistory.com/4)
> [12์ฅ mongoose(๋ชฝ๊ตฌ์ค) ๋ฅผ ์ด์ฉํ ์คํค๋ง ํ์ฅ](https://alexband.tistory.com/23)
```typeblockSchema.set('toJSON', {getter: true, virtuals: true})```
|
a990c0940aba4674b07d66eedc9f57ae
|
mongo $lookup
|
Mongo Pipeline
| null | null | null | null | null |
## Mongo Join
### Example
```typedb.facility.aggregate([ { $lookup: { from: "facilities", localField: "created_by", foreignField: "id", as: "maker" } }])```
### Findone
```type[ { $lookup: { from: "users", localField: "edited_by", foreignField: "id", as: "editor" } }, { "$project": { "editor": { "$arrayElemAt": [ "$editor", 0 ] } }} ]```
### Also findone
> [How to use MongoDBs aggregate `$lookup` as `findOne()`](https://stackoverflow.com/questions/37691727/how-to-use-mongodbs-aggregate-lookup-as-findone)
> [$lookup (aggregation) - MongoDB Manual](https://docs.mongodb.com/manual/reference/operator/aggregation/lookup/)
|
604f0672ad2d4ab4a9cf694574738137
|
srv
|
Mongo Protocol
| null | null | null | null | null |
ba6159b590df4964acc99095e69f7b50
|
|
MongoDB 2dSphere
|
MongoDB Index
| null | null | null | null | null |
[mongo $geoWithin](https://texonom.com/mongo-geowithin-4869dd4870614ea8a5f76b873f8d1ae5)
[mongo $geoNear](https://texonom.com/mongo-geonear-b2f9c06f087d494b8bd739458ba0dd3a)
[mongo $near](https://texonom.com/mongo-near-934de53abf484a3da98e76e1b278f989)
[mongo $geoIntersects](https://texonom.com/mongo-geointersects-2a426390ce8c46d2ad6024c4f0c39461)
|
3d8d2542c2fc42f2bbfd6f02a1cfcdb5
|
MongoDB sparse Index
|
MongoDB Index
| null | null | null | null | null |
## nullable but unique
> [mongoDB/mongoose: unique if not null](https://stackoverflow.com/questions/7955040/mongodb-mongoose-unique-if-not-null)
|
31a5a955755b44cc901d0d47be0bc944
|
mongo $geoIntersects
|
MongoDB 2dSphere
| null | null | null | null | null |
### Get get LineString and Polygin - instead of $geoWithin
```typeconst box = req.body.box const leftX = box[0][0] const leftY = box[0][1] const rightX = box[1][0] const rightY = box[1][1] const layer = req.params.layer const facilityService = app.service('facility') let query = { $and: [ { geometry: { $geoIntersects: { $geometry: { type: 'Polygon', coordinates: [ [ [leftX, leftY], [leftX, rightY], [rightX, rightY], [rightX, leftY], [leftX, leftY] ] ] } } } }, { 'properties.layer': { $eq: layer } } ] }```
> [Howto get any item (Point, LineString, Polygon) within a bounding box in mongodb](https://stackoverflow.com/questions/19981372/howto-get-any-item-point-linestring-polygon-within-a-bounding-box-in-mongodb)
|
2a426390ce8c46d2ad6024c4f0c39461
|
mongo $geoNear
|
MongoDB 2dSphere
| null | null | null | null | null |
atlas ๋ฌด๋ฃ ๋ถ๊ฐ๋ฅ
|
b2f9c06f087d494b8bd739458ba0dd3a
|
mongo $geoWithin
|
MongoDB 2dSphere
| null | null | null | null | null |
[mongo $box](https://texonom.com/mongo-box-d0f59461162943379482b9a8b25822a8)
> [$geoWithin](https://grepper.tistory.com/12)
|
4869dd4870614ea8a5f76b873f8d1ae5
|
mongo $near
|
MongoDB 2dSphere
| null | null | null | null | null |
934de53abf484a3da98e76e1b278f989
|
|
mongo $box
|
mongo $geoWithin
| null | null | null | null | null |
### Only Return Point!!
> [$box - MongoDB Manual](https://docs.mongodb.com/manual/reference/operator/query/box/)
|
d0f59461162943379482b9a8b25822a8
|
mongoDB Window
|
mongoDB Operators
|
Jan 12, 2022
| null | null | null | null |
> [$setWindowFields (aggregation)](https://docs.mongodb.com/manual/reference/operator/aggregation/setWindowFields/?utm_campaign=Int_EM_Tier%20Upgrades%20to%205.0_01_22_WW)
|
4321a4088ceb40dd8a70a512089d54f2
|
Application Side Join
|
NoSQL Notion
|
Mar 13, 2020
|
Alan Jo
|
Alan Jo
|
May 9, 2023
|
### Gallary
|Title|
|:-:|
|
0c4b78573e824234829aaf2e5b9979a4
|
|
Auto Sharding
|
NoSQL Notion
|
Mar 13, 2020
|
Alan Jo
|
Alan Jo
|
May 9, 2023
|
96f7cd9604ee48b0b95dcca28d8c4022
|
||
BCNF
|
NoSQL Notion
|
Mar 13, 2020
|
Alan Jo
|
Alan Jo
|
May 9, 2023
|
## Boyce-Codd Normal Form
- ๊ฒฐ์ ์์ด๋ฉด์ ํ๋ณดํค๊ฐ ์๋ ๊ฒ์ ์ ๊ฑฐ

> X -> Y ๋ trivial FD ์ด๊ฑฐ๋, X ๋ ๋ฆด๋ ์ด์
R ์ ์ํผํค
[JD](https://texonom.com/jd-dfaf4fcb752c4800b6462b727dc91d71)
[FD](https://texonom.com/fd-2c783564969248afa446f147c84d5e14)
ํ๋ฌธ์ ์ฉ๋
[4NF](https://texonom.com/4nf-132e6bbbc14d4ca2a962f20fe70ba3b4)
[5NF](https://texonom.com/5nf-ff4e74455ce242edafa1a9fd7864f8bf)
> [์ ๊ทํ(Normalization) ๊ฐ๋
๊ณผ ์ ๊ทํ ๊ณผ์ (1NF, 2NF, 3NF, BCNF)](https://minimax95.tistory.com/entry/%EC%A0%95%EA%B7%9C%ED%99%94Normalization-%EA%B0%9C%EB%85%90%EA%B3%BC-%EA%B8%B0%EB%B3%B8-%EA%B3%BC%EC%A0%95?category=305607)
|
d65cc8105c864ac2991607102c64e07d
|
|
Collection
|
NoSQL Notion
|
Mar 13, 2020
|
Alan Jo
|
Alan Jo
|
May 9, 2023
|
## Collection of Document
### Gallary
|Title|
|:-:|
|
feccfdc4f77a4c5fa9316accd5eda0e8
|
|
Map & Reduce
|
NoSQL Notion
|
Mar 13, 2020
|
Alan Jo
|
Alan Jo
|
May 9, 2023
|
fbecc941b5d342c8bba4f32bfc18efa4
|
||
NoSQL Aggregation
|
NoSQL Notion
|
Mar 13, 2020
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
### NoSQL Aggregation Notion
|Title|
|:-:|
|[NoSQL Clustering](https://texonom.com/nosql-clustering-caa0b88908ff41ebba17677c05bb62ee)|
|
dba9ab7dfe1f46eb8b93a5d78089f076
|
|
Nosql Document
|
NoSQL Notion
|
Mar 13, 2020
|
Alan Jo
|
Alan Jo
|
May 9, 2023
|
## One Set of Data
### Nosql Document Notion
|Title|
|:-:|
|
295bff32a5d04dc98d44b39cf61225c2
|
|
4NF
|
BCNF
| null | null | null | null | null |
๋ฆด๋ ์ด์
R์ ๋ค์ค์น ์ข
์(Multi Value Dependency : MVD) A ->>B๊ฐ ์กด์ฌํ ๋ R์ ๋ชจ๋ ์์ฑ๋ A์ ํจ์ ์ข
์์ด๋ฉด ๋ฆด๋ ์ด์
R์ ์ 4 ์ ๊ทํ์ ์ํจ
> [์ ๊ทํ(Normalization) ๊ฐ๋
๊ณผ ์ ๊ทํ ๊ณผ์ (4NF, 5NF)](https://minimax95.tistory.com/entry/%EC%A0%95%EA%B7%9C%ED%99%94Normalization-%EA%B0%9C%EB%85%90%EA%B3%BC-%EC%A0%95%EA%B7%9C%ED%99%94-%EA%B3%BC%EC%A0%954NF-5NF)
|
132e6bbbc14d4ca2a962f20fe70ba3b4
|
5NF
|
BCNF
| null | null | null | null | null |
๋ฆด๋ ์ด์
R์ ์กด์ฌํ๋ ๋ชจ๋ ์กฐ์ธ ์ข
์(JD)์ด ๋ฆด๋ ์ด์
R์ ํ๋ณดํค๋ฅผ ํตํด์๋ง ์ฑ๋ฆฝ๋๋ค๋ฉด ๋ฆด๋ ์ด์
R์ ์ 5 ์ ๊ทํ ๋๋ PJ/NF(Projection-Join Normal Form)์ ์ํจ
์๋ก
{A, B, C}๋ฅผ ๋ฆด๋ ์ด์
R์ ๋ถ๋ถ์งํฉ์ด๋ผ๊ณ ํ ๋, ๋ฆด๋ ์ด์
R์์ {A, B, C}๋ฅผ ํ๋ก์ ์
ํ ๊ฒ๋ค์ ์กฐ์ธํ ๊ฒ๊ณผ ์๋์ ๋ฆด๋ ์ด์
R์ด ๊ฐ๋ค๋ฉด ๋ฆด๋ ์ด์
R์ ์กฐ์ธ ์ข
์(JD : Join Dependency)์ ๋ง์กฑ์ํฌ ์ ์๋ค
> [์ ๊ทํ(Normalization) ๊ฐ๋
๊ณผ ์ ๊ทํ ๊ณผ์ (4NF, 5NF)](https://minimax95.tistory.com/entry/%EC%A0%95%EA%B7%9C%ED%99%94Normalization-%EA%B0%9C%EB%85%90%EA%B3%BC-%EC%A0%95%EA%B7%9C%ED%99%94-%EA%B3%BC%EC%A0%954NF-5NF)
|
ff4e74455ce242edafa1a9fd7864f8bf
|
FD
|
BCNF
| null | null | null | null | null |
### Functional Dependency
์ข์ ๋ฆด๋ ์ด์
์ค๊ณ๋ฅผ ์ํ ์ ํ์ ๊ธฐ์ค์ผ๋ก ์์ฑ์ ์๋ฏธ์ ์์ฑ ์ํธ ๊ฐ์ ๊ด๊ณ์์ ์ ๋๋๋ ์ผ์ข
์ ์ ์ฝ ์กฐ๊ฑด
์ด๋ค ๋ฆด๋ ์ด์
R์์ A, B๊ฐ ๋ฆด๋ ์ด์
R์ ๋ถ๋ถ ์์ฑ(Attribute)์ด๋ผ๊ณ ํ ๋ ์์ฑ A์ ๋๋ฉ์ธ ๊ฐ(์์ฑ ๊ฐ, ์์ ๊ฐ) ๊ฐ๊ฐ์ ๋ํด ์๊ฐ์ ๊ด๊ณ์์ด ์์ฑ B์ ๋๋ฉ์ธ ๊ฐ์ด ์ค์ง ํ ๊ฐ๋ง ์ฐ๊ด๋๋ค๋ฉด B๋ A์ ํจ์ ์ข
์์ด๋ผ ํ๊ณ , A -> B๋ก ํ๊ธฐํฉ๋๋ค. ์ฌ๊ธฐ์ A๋ ๊ฒฐ์ ์, B๋ ์ข
์์
> [์ ๊ทํ(Normalization) ๊ฐ๋
๊ณผ ์ ๊ทํ ๊ณผ์ (4NF, 5NF)](https://minimax95.tistory.com/entry/%EC%A0%95%EA%B7%9C%ED%99%94Normalization-%EA%B0%9C%EB%85%90%EA%B3%BC-%EC%A0%95%EA%B7%9C%ED%99%94-%EA%B3%BC%EC%A0%954NF-5NF)
|
2c783564969248afa446f147c84d5e14
|
JD
|
BCNF
| null | null | null | null | null |
### Join Dependency
|
dfaf4fcb752c4800b6462b727dc91d71
|
NoSQL Clustering
|
NoSQL Aggregation Notion
|
Mar 13, 2020
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
Query to All server not divide data per server
### NoSQL Clustering Notion
|Title|
|:-:|
|
caa0b88908ff41ebba17677c05bb62ee
|
|
Graph Database
| null | null | null | null | null | null |
16ab45cafb5045b194d992d4ccde636d
|
|
Key Value DB
| null | null | null | null | null | null |
5bc7539824ea460bb0479a0c3c3ef65d
|
|
Wide column stores
|
NOSQL Types
|
Mar 15, 2021
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
97fd397dd3744f8fb13d1aadab58e59d
|
||
**Database normalization**
|
RDBMS Usages
|
Nov 2, 2020
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
๊ทธ ์ ๋๋ฅผ ์ ๊ทํ(Normal Form)
[1NF](https://texonom.com/1nf-42db31f16bbe4999a682c95eea2a5f85)
[2NF](https://texonom.com/2nf-5b48262003fc43a9b9c4d8c2d9f71fdb)
[3NF](https://texonom.com/3nf-480d68920eac4c35a8997f361d5c4133)
ํ
์ด๋ธ์ด ๋ณต์กํด์ง์๋ก**ย 3NF์ ๊ทํ์ ๋ง์กฑ**ํ๋ค๊ณ ํด๋
**์ด์ํ์(์ฝ์
์ด์, ๊ฐฑ์ ์ด์ ,์ญ์ ์ด์)**๊ฐ ๋ฐ์ ๊ฐ๋ฅ
> [https://chankim.tistory.com/9](https://chankim.tistory.com/9)
|
d30b01e25eb840998c3a3c21d0d41beb
|
|
DB Relationship
|
RDBMS Usages
|
Jan 26, 2021
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
๋ entity๊ฐ์ ์
๋ฌด์ ์ธ ์ฐ๊ด์ฑ
๊ผญ ํ์ํ ์นผ๋ผ์ด ์๋๋ฉด ์ ๋ ํจ๋ถ๋ก ์ถ๊ฐ ๋
ธ๋
ธ
ERD ๋ฅผ ๊ทธ๋ฆด๋ ๊ณ ๋ ค๋๋ ๊ฐ๋
์ด๊ธฐ ๋๋ฌธ์ ์ด๋ป๊ฒ๋ณด๋ฉด ์ถ์์ ์ธ ๊ฐ๋
[DB Identifying relationship](https://texonom.com/db-identifying-relationship-fd052ef3764a4b8bb060c2f65719c7fa)
[Non Identifying Relationship](https://texonom.com/non-identifying-relationship-510b51c3b2d443299418ab31cfaf0408)
> [RDBMS์ ๊ด๊ณ - Identifying & Non-Identifying Relationship ์ ๋ํ์ฌ](https://jins-dev.tistory.com/entry/RDBMS%EC%9D%98-%EA%B4%80%EA%B3%84-Identifying-NonIdentifying-Relationship-%EC%97%90-%EB%8C%80%ED%95%98%EC%97%AC)
> [์๋ณ๊ด๊ณ(Identifying Relationship)๊ณผ ๋น์๋ณ๊ด๊ณ(Non Identifying Relationship)](https://linuxism.ustd.ip.or.kr/512)
|
0854e6f90f094d9d823f5bd40f8dbb75
|
|
1NF
|
Database normalization
| null | null | null | null | null |
Atomicity
๊ฐ ์
์ ๋จ์ผ ๊ฐ
|
42db31f16bbe4999a682c95eea2a5f85
|
2NF
|
Database normalization
| null | null | null | null | null |
์์ฑ ๊ฐ์ ๊ฒฐ์ ์ด ๊ธฐ๋ณธํค(๋๋ ๋ณตํฉํค)์ ์ ์ฒด๋ฅผ ์ฐธ์กฐํด์ผ ํ๋ค
|
5b48262003fc43a9b9c4d8c2d9f71fdb
|
3NF
|
Database normalization
| null | null | null | null | null |
๋ชจ๋ ์์ฑ์ด ๊ธฐ๋ณธํค(๋๋ ๋ณตํฉํค)์ ์ดํ์ ํจ์ ์ข
์์ด ๋์ง ์์์ผ
|
480d68920eac4c35a8997f361d5c4133
|
DB Identifying relationship
|
DB Relationship
| null | null | null | null | null |
**๋ถ๋ชจ ํ
์ด๋ธ์ ๊ธฐ๋ณธํค ๋๋ ๋ณตํฉํค๊ฐ ์์ ํ
์ด๋ธ์ ๊ธฐ๋ณธํค ๋๋ ๋ณตํฉํค์ ๊ตฌ์ฑ์์ผ๋ก ์ ์ด๋๋ฉฐ,**
**๊ด๊ณ๋ ์๋ก ์ข
์**
[Strong coupling](https://texonom.com/strong-coupling-fa808b05af264f3aa8ca4d557955a768)
์ ์์ ์ฑ
์ ๊ฒฝ์ฐ๋ ์ ์๊ฐ ์๋ ์ฑ
์ด ์์ ์ ์์ผ๋ฏ๋กย Identifyingย ๊ด๊ณ
> [RDBMS์ ๊ด๊ณ - Identifying & Non-Identifying Relationship ์ ๋ํ์ฌ](https://jins-dev.tistory.com/entry/RDBMS%EC%9D%98-%EA%B4%80%EA%B3%84-Identifying-NonIdentifying-Relationship-%EC%97%90-%EB%8C%80%ED%95%98%EC%97%AC)
|
fd052ef3764a4b8bb060c2f65719c7fa
|
Non Identifying Relationship
|
DB Relationship
| null | null | null | null | null |
### ๊ฐ์ id ๋ฐ๋ก ๊ฐ์ง๋ฉด non identifying
์ฑ
๊ณผ ๋
์์ ๊ฐ์ ์ ๋ณด์ ๊ฒฝ์ฐ๋ย Non-Identifyingย ๊ด๊ณ
optional ๊ณผ Mandatory๋ผ๋ ๊ฐ๋
์ด ์๋ค. ์ด๋ Non-identifying Relationship์ ์ ์ฉ๋๋ ๋ด์ฉ
> [RDBMS์ ๊ด๊ณ - Identifying & Non-Identifying Relationship ์ ๋ํ์ฌ](https://jins-dev.tistory.com/entry/RDBMS%EC%9D%98-%EA%B4%80%EA%B3%84-Identifying-NonIdentifying-Relationship-%EC%97%90-%EB%8C%80%ED%95%98%EC%97%AC)
|
510b51c3b2d443299418ab31cfaf0408
|
Strong coupling
|
DB Identifying relationship
| null | null | null | null | null |
fa808b05af264f3aa8ca4d557955a768
|
|
aresDB
|
RDBMSes
|
Apr 29, 2021
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
gpu
|
f8b0146e539c44d9bb81037c099c466d
|
|
AWS Aurora
|
RDBMSes
|
Jun 2, 2022
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
[AWS](https://texonom.com/aws-3c69e22c27944a6bba37c5bb1e7d9406)
|
### AWS Aurora Usages
|Title|
|:-:|
|[](https://texonom.com/d401687203ee48999b74cab9dbe56058)|
|
e2b283bc01bd41ceb30117cfc818c227
|
BlazingDB
|
RDBMSes
|
Apr 29, 2021
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
BlazingSQL is a GPU accelerated SQL engine built on top of the RAPIDS ecosystem
> [BlazingDB/blazingsql](https://github.com/BlazingDB/blazingsql)
|
7b4a779982764c72a4cb70361a9595db
|
|
Cozo
|
RDBMSes
|
Nov 15, 2022
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
> [GitHub - cozodb/cozo: A general-purpose, transactional, relational database that uses Datalog and focuses on graph data and algorithms](https://github.com/cozodb/cozo)
|
25e8e0c7eb0f436b920a7223cf296433
|
|
dolt
|
RDBMSes
|
Mar 4, 2021
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
### SQL database that you can fork, clone, branch, merge, push and pull just like a git repository
[Git](https://texonom.com/git-873d03ec534e4e5e977ab11f38cb2471)
> [dolthub/dolt](https://github.com/dolthub/dolt?utm_source=tldrnewsletter)
> [Untitled](https://www.dolthub.com/)
|
2e5858d370cb46959198cb584c950d56
|
|
faunadb
|
RDBMSes
|
Apr 24, 2021
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
### faunadb Notion
|Title|
|:-:|
|[Template Page](https://texonom.com/template-page-44960909c78f407ca08e2a2b26c494cd)|
|
ee464373a9a44e6e8f56aa3e4a558f99
|
|
H2DB
|
RDBMSes
|
Apr 4, 2022
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
[yaade](https://texonom.com/yaade-f96e5f25204a41ceb88a263632756736)
|
bd7960233f4a4671b275b03344862690
|
|
Microsoft SQL Server
|
RDBMSes
|
Mar 1, 2020
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
fbb1f41fc88640a48cb5016bd2937fbc
|
||
MySQL
|
RDBMSes
|
Jan 9, 2020
|
Alan Jo
|
Alan Jo
|
Aug 31, 2023
|
### MySQL Engines
|Title|
|:-:|
|[MyISAM](https://texonom.com/myisam-208db9567f214ad5a75c92c6f64d8bc1)|
### MySQL Usages
|Title|
|:-:|
|[PlanetScale](https://texonom.com/planetscale-478c6106719a4034b36b478686c76291)|
|[MySQL Config](https://texonom.com/mysql-config-60363c58324b4b479a267730f01a2f0f)|
|[Mysql Mangement](https://texonom.com/mysql-mangement-d370d7e35fbb4e0fa7d09c110834696a)|
|[MySQL Connection](https://texonom.com/mysql-connection-d432cce23fa64c259adedb6a04525995)|
|[MySQL Error](https://texonom.com/mysql-error-d5b549b58ff948fbbbb6bca187c654bc)|
|[ProxySQL](https://texonom.com/proxysql-ff8ff48e04c949209c8ce9a5a147e3e1)|
> [MySql๋ก DB ๊ตฌ์ถํ๊ธฐ](https://m.blog.naver.com/PostView.nhn?blogId=kooyomi0114&logNo=221005094818&proxyReferer=https%3A%2F%2Fwww.google.com%2F)
> [MySql schema(์คํค๋ง)์ database(๋ฐ์ดํฐ๋ฒ ์ด์ค)์ ์ฐจ์ด์ ](https://seoulitelab.tistory.com/entry/MySql-schema%EC%8A%A4%ED%82%A4%EB%A7%88%EC%99%80-database%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%EC%9D%98-%EC%B0%A8%EC%9D%B4%EC%A0%90)
|
baf7441d97e54fb08d931374e9afdfbe
|
|
OmniSci
|
RDBMSes
|
Apr 29, 2021
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
mapD
gpu
|
4b975099cc70454c82b175f8ce6a411e
|
|
Oracle DB
|
RDBMSes
|
Mar 1, 2020
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
eae2ddfec8b84d1bb2de5614e2bba502
|
||
PostgreSQL
|
RDBMSes
|
Mar 1, 2020
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
[Supabase](https://texonom.com/supabase-6cdec23ddb9c4ab9a756c7b52cbed109)
|
### Postgres Notion
|Title|
|:-:|
|[Postgres Structure](https://texonom.com/postgres-structure-6b83e9600e984698be16f5c10df78f44)|
|[PL/pgSQL](https://texonom.com/plpgsql-1717eec784974561a1aca9744c0bcced)|
|[Postgres Version](https://texonom.com/postgres-version-937c030bca1b4f40afa4b74126b345da)|
|[postgres function](https://texonom.com/postgres-function-13ab02d4c1ad4daf8889e8a2a6b1e1b3)|
|[Postgres Extension](https://texonom.com/postgres-extension-85dacc65325447a6afc9fb7e8022512e)|
|[PostgreSQL History](https://texonom.com/postgresql-history-f17a307eec7e4f7f9fd2191784f2c856)|
### Postgres Usages
|Title|
|:-:|
|[Postgres Tool](https://texonom.com/postgres-tool-9a3f9d4bab3c47b493ae3ff8230536a3)|
|[Postgre Backup](https://texonom.com/postgre-backup-c2adeeba2c464e73a618b43bd999fccc)|
|[Postgres Optimization](https://texonom.com/postgres-optimization-d5012b5593b741c4a5050cb173ed28a4)|
|[Postgres Container](https://texonom.com/postgres-container-71ee870182164039bcb37daff56ac3b9)|
|[PostgreSQL Sharding](https://texonom.com/postgresql-sharding-cf4791cabc914cc2b8ca14847742ac2c)|
|[PostgreSQL Error](https://texonom.com/postgresql-error-ace4b57eef624118839406008650dfc8)|
|[DBDev](https://texonom.com/dbdev-e82441e22c8d448fbfeed1aa9b382a1b)|
### Well made Document
> [PostgresqlCO.NF: PostgreSQL configuration for humans](https://postgresqlco.nf/doc/en/param/)
|
3ae3f466dca04db5a5e1d1f8560f1cfb
|
SurrelDB
|
RDBMSes
|
Aug 23, 2022
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
[surrealdb](https://github.com/surrealdb/surrealdb)
|
3688da36f6614a469f62ec08a2659e48
|
|
Tibero
|
RDBMSes
|
Mar 1, 2020
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
f5333615ca764915b19c897f31b75be6
|
||
Yugabyte
|
RDBMSes
|
Jan 29, 2022
|
Alan Jo
|
Alan Jo
|
May 11, 2023
|
### Distribted
[yugabyte-db](https://github.com/yugabyte/yugabyte-db)
|
030ac9c2f40b41a2b503c93530923d00
|
|
[neon](https://github.com/neondatabase/neon)
|
AWS Aurora Usages
|
Jun 2, 2022
|
Alan Jo
|
Alan Jo
|
Jun 2, 2022
| null |
### serverless open source alternative to AWS Aurora Postgres
> [Neon - Serverless, Fault-Tolerant, Branchable Postgres](https://neon.tech/)
|
d401687203ee48999b74cab9dbe56058
|
Template Page
|
faunadb Notion
|
Apr 24, 2021
|
Alan Jo
|
Alan Jo
|
Apr 24, 2021
| null |
### Template Gallery
|Title|
|:-:|
|[Template Page](https://texonom.com/template-page-be11fbd10fff4571b89afb5c96ec1b9b)|
|
44960909c78f407ca08e2a2b26c494cd
|
Template Page
|
Template Gallery
|
Apr 24, 2021
|
Alan Jo
|
Alan Jo
|
Apr 24, 2021
|
be11fbd10fff4571b89afb5c96ec1b9b
|
||
yaade
|
H2DB
| null | null | null | null | null |
### h2 db api generator
[yaade](https://github.com/EsperoTech/yaade)
|
f96e5f25204a41ceb88a263632756736
|
MyISAM
|
MySQL Engines
|
Jan 15, 2020
|
Alan Jo
|
Alan Jo
|
Aug 31, 2023
|
208db9567f214ad5a75c92c6f64d8bc1
|
||
MySQL Config
|
MySQL Usages
|
Nov 10, 2021
|
Alan Jo
|
Alan Jo
|
Aug 31, 2023
|
### MySQL Configs
|Title|
|:-:|
|[MySQL general_log](https://texonom.com/mysql-generallog-d8e601eb88ab4167ac6ed91a4abb9fb2)|
|[MySQL tmpdir](https://texonom.com/mysql-tmpdir-9feda6e8338b4d69b5f5d5d85650e9d3)|
|
60363c58324b4b479a267730f01a2f0f
|
|
MySQL Connection
|
MySQL Usages
|
Jan 13, 2020
|
Alan Jo
|
Alan Jo
|
Aug 31, 2023
|
# Check Connection
```typeshow status like '%CONNECT%';```
### Check process
```typeshow processlist;```
### check variable
```typeshow global variables like 'max_connections';show global variables like 'open_files_limit';show global variables like 'table_open_cache';show global variables like '%timeout';# global ์๋ฃ์ผ๋ฉด console ์์ interactive๋ก ๋์ด```
### check os nofile limit
```typeulimit -H -n4096ulimit -S -n4096```
### monitoring
```typemysqladmin -u root -p -i 1 processlistmysqladmin -u root -p -i 1 status```

> 
> - host ์์ monitoring
> - auto refreshing ๋ ๊ฐ๋ฅ
>
|
d432cce23fa64c259adedb6a04525995
|
|
MySQL Error
|
MySQL Usages
|
Nov 10, 2021
|
Alan Jo
|
Alan Jo
|
Aug 11, 2023
|
d5b549b58ff948fbbbb6bca187c654bc
|
||
Mysql Mangement
|
MySQL Usages
|
Feb 11, 2020
|
Alan Jo
|
Alan Jo
|
Aug 31, 2023
|
### /etc/my.cnf.d
```type[mysqld]socket = /var/lib/mysql/mysql.sockmax_connections = 1800wait_timeout = 300interactive_timeout = 3600```
### /etc/security/limits.conf
```type# mysql open-filesmysql soft nofile 4096mysql hard nofile 4096```
> [MySQL open_files_limit ๋ณ๊ฒฝํ๊ธฐ](http://minsql.com/mysql/mysql-open_files_limit-eb-b3-80-ea-b2-bd-ed-95-98-ea-b8-b0/)
> [mysqld ์์ํ ๋ max_open_files ๊ฒฝ๊ณ ](https://softwiz.tistory.com/entry/mysqld-%EC%8B%9C%EC%9E%91%ED%95%A0-%EB%95%8C-maxopenfiles-%EA%B2%BD%EA%B3%A0)
|
d370d7e35fbb4e0fa7d09c110834696a
|
|
PlanetScale
|
Cloud DB Providers
|
Aug 31, 2023
|
Alan Jo
|
Alan Jo
|
Aug 16, 2023
|
### PlanetScale Usages
|Title|
|:-:|
|
478c6106719a4034b36b478686c76291
|
|
ProxySQL
|
MySQL Usages
|
Feb 23, 2023
|
Alan Jo
|
Alan Jo
|
Aug 31, 2023
|
ff8ff48e04c949209c8ce9a5a147e3e1
|
||
MySQL general_log
|
MySQL Configs
|
Feb 19, 2020
| null | null | null | null |
> [MySQL Query ์ถ์ ํ๊ธฐ](http://blog.plura.io/?p=4493)
|
d8e601eb88ab4167ac6ed91a4abb9fb2
|
MySQL tmpdir
|
MySQL Configs
|
Feb 19, 2020
| null | null | null | null |
- partiton ์ฉ๋ ๋ถ์กฑ
```typetmpdir=/tmp```
|
9feda6e8338b4d69b5f5d5d85650e9d3
|
PL/pgSQL
|
Postgres Notion
|
Dec 6, 2021
|
Alan Jo
|
Alan Jo
|
Apr 13, 2022
|
PostgreSQL ORDBMS์์ ์ง์ํ๋ ์ ์ฐจ ์ ํ๋ก๊ทธ๋๋ฐ ์ธ์ด
์ค๋ผํด์ PL / SQL ์ธ์ด์ ๋งค์ฐ ์ ์ฌ
|
1717eec784974561a1aca9744c0bcced
|
|
Postgres Extension
|
Postgres Notion
|
Dec 11, 2020
|
Alan Jo
|
Alan Jo
|
Apr 17, 2023
|
[PG Strom](https://texonom.com/pg-strom-0f0cfe801d9c4c6393b8d54931bf54ee)
|
```typeselect * from pg_extension```
```typecreate extension extnamedrop extension extname```
### Postgres Extension Notion
|Title|
|:-:|
|[PostgreSQL Trusted Language Extensions](https://texonom.com/postgresql-trusted-language-extensions-51b1e31154e14a8ba87c49f30aacb1a2)|
|[Postgres Extension Structure](https://texonom.com/postgres-extension-structure-7816b33385224fe4bafdb03a8ed65500)|
### Postgres Extensions
|Title|
|:-:|
|[Postgis](https://texonom.com/postgis-2f90e5cb97f54b7a93c03fc74e196c0b)|
|[postgre uuid-ossp](https://texonom.com/postgre-uuid-ossp-bbbf8dab4edc4c0a90022c180b8ca8ad)|
|[pgx](https://texonom.com/pgx-59dbe13e88554fa0ba72469afa2f194c)|
|
85dacc65325447a6afc9fb7e8022512e
|
postgres function
|
Postgres Notion
|
Apr 11, 2023
|
Alan Jo
|
Alan Jo
|
Apr 11, 2023
|
### postgres function Usages
|Title|
|:-:|
|[plrust](https://texonom.com/plrust-927c66b6595649378f7d8c1a117f79eb)|
|
13ab02d4c1ad4daf8889e8a2a6b1e1b3
|
|
Postgres Structure
|
Postgres Notion
|
Mar 23, 2021
|
Alan Jo
|
Alan Jo
|
Apr 30, 2023
|
### Postgres Components
|Title|
|:-:|
|[Postgres Database](https://texonom.com/postgres-database-2b4c9d5cfebe4bbc82000b93513a9dbe)|
|[Postgres Role](https://texonom.com/postgres-role-452b79e15f0945c88da0469ceed2fd2c)|
|[Postgres Schema](https://texonom.com/postgres-schema-408e39ccc56942e782c28eaee02284ff)|
|[Postgre Table](https://texonom.com/postgre-table-cf015306f7ef43eab9d1d6c2c83c33b7)|
|[PostgreSQL Tablespace](https://texonom.com/postgresql-tablespace-16614f3108d64f07a87c8c0bc585d11e)|
|[Postgres Column](https://texonom.com/postgres-column-7b92022b65bc4d87be120d8ae2c11d8f)|
|[Postgre View](https://texonom.com/postgre-view-d6cece454e52465e9459c9f3d2e6bc5c)|
|[Postgre Rules](https://texonom.com/postgre-rules-2ae913194df640d89dfa000bd246a26b)|
|[Postgres Data Type](https://texonom.com/postgres-data-type-0d0263d27f3e4e4992d970f7dcfb1af9)|
|[Postgres Constraints](https://texonom.com/postgres-constraints-e3e853cf08e84ccea2acb0d4ab624589)|
|[Postgre Function](https://texonom.com/postgre-function-4fce1d892d3e4b63a2bedfae3e3dbd10)|
|[PostgreSQL Revoke](https://texonom.com/postgresql-revoke-264394e8d4ba498ca6639444d0588585)|
|[Postgres Vacuum](https://texonom.com/postgres-vacuum-1734ee2ce2ac461cac73ce5326c38366)|
|[Postgres Reindex](https://texonom.com/postgres-reindex-a92950533843403aba8f734dfc51225f)|
> [Nine ways to shoot yourself in the foot with PostgreSQL](https://philbooth.me/blog/nine-ways-to-shoot-yourself-in-the-foot-with-postgresql)
|
6b83e9600e984698be16f5c10df78f44
|
|
Postgres Version
|
Postgres Notion
|
Jul 12, 2022
|
Alan Jo
|
Alan Jo
|
Jul 12, 2022
|
### Postgres Versions
|Title|
|:-:|
|[Postgres 15](https://texonom.com/postgres-15-3dca46cec8f64192b0cad7d92f009090)|
|
937c030bca1b4f40afa4b74126b345da
|
|
PostgreSQL History
|
Postgres Notion
|
Jul 19, 2023
|
Alan Jo
|
Alan Jo
|
Jul 19, 2023
|
PostgreSQL the database was derived from the POSTGRES Project, a package written at the University of California at Berkeley in 1986.
This package included a query language called "PostQUEL".
In 1994, Postgres95 was built on top of POSTGRES code, adding an SQL language interpreter as a replacement for PostQUEL.Eventually, Postgres95 was renamed to PostgreSQL to reflect the SQL query capability.
> [Database | Supabase Docs](https://supabase.com/docs/guides/database/overview)
|
f17a307eec7e4f7f9fd2191784f2c856
|
|
Postgres Extension Structure
|
Postgres Extension Notion
|
Apr 17, 2023
|
Alan Jo
|
Alan Jo
|
Apr 17, 2023
|
### db extension table
- `pg_extension`
> - `extname`
> - `oxtowner` - oid
> - `oxtnamespace`
> - `extrelocatable`
> - `extversion`
> - `extconfig`
> - `extcondition`
|
7816b33385224fe4bafdb03a8ed65500
|
|
PostgreSQL Trusted Language Extensions
|
Postgres Extension Notion
|
Apr 16, 2023
|
Alan Jo
|
Alan Jo
|
Apr 17, 2023
|
[pg_tle](https://github.com/aws/pg_tle)
|
[PL/pgSQL](https://texonom.com/plpgsql-1717eec784974561a1aca9744c0bcced)
> [Trusted Language Extensions for Postgres](https://supabase.com/blog/pg-tle)
|
51b1e31154e14a8ba87c49f30aacb1a2
|
pgx
|
Postgres Extensions
|
Jul 22, 2021
|
Alan Jo
|
Alan Jo
|
Apr 17, 2023
|
[pgrx](https://github.com/tcdi/pgx)
`pgx`ย is a framework for developing PostgreSQL extensions in Rust
|
59dbe13e88554fa0ba72469afa2f194c
|
|
Postgis
|
Postgres Extensions
|
Nov 28, 2019
|
Alan Jo
|
Alan Jo
|
Jun 12, 2023
|
### Postgis Notion
|Title|
|:-:|
|[PostGis Spatial Index](https://texonom.com/postgis-spatial-index-05ffcb82ba9d49d8b140db80b9c8f7a3)|
|[Postgis contrib](https://texonom.com/postgis-contrib-a78c99d6d5ce40aa8a5175538345eb5f)|
|[Postgis SRID](https://texonom.com/postgis-srid-9588131fb00643e981fdf05c4a61eee0)|
### Postgis Usage
|Title|
|:-:|
|[Postgis Install](https://texonom.com/postgis-install-3a8aa04d587b477cbe4b489a1e17782a)|
|[postgis topology](https://texonom.com/postgis-topology-bd8b9b845b56454f8701f04dcb4f7e65)|
|[ogr2ogr](https://texonom.com/ogr2ogr-df138d989b2245c4b6ad843d63e71769)|
|[Postgis Function](https://texonom.com/postgis-function-136d7a1e49cc4ed69af832ab9b52c415)|
|[postgis_sfcgal](https://texonom.com/postgissfcgal-5261248708ca4312926c35e420bc0fa5)|
### Postgis Event
|Title|
|:-:|
|[crunchy data](https://texonom.com/crunchy-data-fa7725a5721742dca44b2a3c71a09d92)|
|[Postgis Error](https://texonom.com/postgis-error-e15ae9e1073e4ba5bb44f9110b70e47b)|
|
2f90e5cb97f54b7a93c03fc74e196c0b
|
|
postgre uuid-ossp
|
Postgres Extensions
|
Dec 28, 2020
|
Alan Jo
|
Alan Jo
|
Apr 17, 2023
|
```typeCREATE EXTENSION IF NOT EXISTS "uuid-ossp";select uuid_generate_v4()```
> [Generating a UUID in Postgres for Insert statement?](https://stackoverflow.com/questions/12505158/generating-a-uuid-in-postgres-for-insert-statement)
> [uuid-ossp](https://www.postgresql.org/docs/9.4/uuid-ossp.html)
|
bbbf8dab4edc4c0a90022c180b8ca8ad
|
|
crunchy data
|
Postgis Event
|
Nov 28, 2019
| null | null | null |
> [Virtual PostGIS Day 2020 Crunchy Data](https://info.crunchydata.com/en/postgis-day-2020-crunchy-data?fbclid=IwAR3BaymPTjhSNOsMP4_otVa0ELgZ0zlyPP8LNbAUhxjFg9JoxkfHNgRFos8)
|
fa7725a5721742dca44b2a3c71a09d92
|
|
Postgis Error
|
Postgis Event
|
Jun 12, 2023
| null | null | null |
Z ๋ฅผ ์ ๋๋ก ์ง์ ์ํด์ xy ๊ฐ์ง๋ง z๋ค๋ฅธ ํฌ์ธํธ๊ฐ linestirng์ด๋ polygon์์ ์ฐ์์ผ๋ก ์ฐํ์์ผ๋ฉด invalid feature๊ฐ ๋๋ ๊ฒ ํ๊ณ
self intersaction ๋ invalid๋ผ๊ณ ํ๋ํ...
|
e15ae9e1073e4ba5bb44f9110b70e47b
|
|
Postgis contrib
|
Postgis Notion
|
Nov 28, 2019
| null | null | null |
ํ์ฅ ํ๋ก๊ทธ๋จ๋ค
|
a78c99d6d5ce40aa8a5175538345eb5f
|
|
PostGis Spatial Index
|
Postgis Notion
|
Nov 20, 2020
| null | null | null |
[PostGis Cluster Spatial Index](https://texonom.com/postgis-cluster-spatial-index-aded5e7066b448a9bc57298d4f7aec0c)
```typeCREATE INDEX geom_index ON "42dot".recorded USING GIST (geom)```
> [15. Spatial Indexing - Introduction to PostGIS](https://postgis.net/workshops/postgis-intro/indexing.html)
|
05ffcb82ba9d49d8b140db80b9c8f7a3
|
|
Postgis SRID
|
Postgis Notion
|
Dec 3, 2019
| null | null | null |
srid๋ map projection ํ๋ ๋ชจ์์ ์ด id ์ด์ฉ
> [5. Loading spatial data - Introduction to PostGIS](https://postgis.net/workshops/postgis-intro/loading_data.html)
```typeSELECT srtext FROM spatial_ref_sys WHERE srid = 26918;```
|
9588131fb00643e981fdf05c4a61eee0
|
|
PostGis Cluster Spatial Index
|
PostGis Spatial Index
| null | null | null | null | null |
```typeCLUSTER "schema".recorded USING geom_index```
|
aded5e7066b448a9bc57298d4f7aec0c
|
ogr2ogr
|
Postgis Usage
|
Jan 8, 2021
| null | null | null |
geojson to postgis data converting์ ์ง์ํ๋ gdal library
### convert
> [https://morphocode.com/using-ogr2ogr-convert-data-formats-geojson-postgis-esri-geodatabase-shapefiles/](https://morphocode.com/using-ogr2ogr-convert-data-formats-geojson-postgis-esri-geodatabase-shapefiles/)
|
df138d989b2245c4b6ad843d63e71769
|
|
Postgis Function
|
Postgis Usage
|
May 3, 2021
| null | null | null |
[ST_Extrude()](https://texonom.com/stextrude-03cbd3a2180a4734af0cbcf0c7b6abc9)
[PostGIS_Version()](https://texonom.com/postgisversion-a40df56a2f7042f7a7ff0c5af371c3cd)
[ST_Intersects()](https://texonom.com/stintersects-655625c6a2514ea88886ae90f8626dc3)
[ST_MakeEnvelope()](https://texonom.com/stmakeenvelope-2a107cbaa80645d396bcab88b9be6a26)
[ST_3DIntersects()](https://texonom.com/st3dintersects-a8ddab5e0b154edaaf674db5ff6954b5)
[ST_Difference()](https://texonom.com/stdifference-202a1b8de8aa4e6ca71498601db869f6)
[ST_IsValid()](https://texonom.com/stisvalid-cd742491bef340fcb0916331e4e882b2)
[ST_Buffer()](https://texonom.com/stbuffer-d623a243cf1a471695627d7b82502876)
[ST_GeomFromText()](https://texonom.com/stgeomfromtext-afa0b158293a474ba75ddca64b27bb8e)
[ST_AsText](https://texonom.com/stastext-04267d0e46fb4745b77e6ff10f47b432)
[ST_IsValidReason()](https://texonom.com/stisvalidreason-b8de884b02d6468b9723f7411b0d799b)
> [PostGIS 2.4.3 ์ฌ์ฉ์ ์ง์นจ์](https://postgis.net/docs/manual-2.4/postgis-ko_KR.html)
|
136d7a1e49cc4ed69af832ab9b52c415
|
|
Postgis Install
|
Postgis Usage
|
Nov 28, 2019
| null | null | null |
- install 2d postgis, 3d postgis
[Docker Postgis ](https://texonom.com/docker-postgis-8728c597431a46afa3f07d76757a8326)
```typeCREATE EXTENSION postgis;CREATE EXTENSION postgis_topology;ALTER EXTENSION postgis UPDATE;ALTER EXTENSION postgis_topology UPDATE```
```typeCREATE EXTENSION postgis_raster;CREATE EXTENSION postgis_sfcgal;CREATE EXTENSION fuzzystrmatch;CREATE EXTENSION address_standardizer;CREATE EXTENSION address_standardizer_data_us;CREATE EXTENSION postgis_tiger_geocoder;```
> [PostGIS](https://postgis.net/install/)
|
3a8aa04d587b477cbe4b489a1e17782a
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.