Merhabalar.
Bu yazımda MongoDB Compass üzerinden toplu halde veri eklemeye bakacağız.
Burada senaryomuz şöyle olabilir. Elimizde bizim Collection’ımıza uygun bir Json ya da CSV şeklinde verileri saklayan bir dosyamız var. Bu dosya ile tüm verileri tek seferde aktarabiliriz.
Elimizdeki Customers.json dosyamızın içeriğini yazının sonunda verdim oradan alabilirsiniz. Siz de bir json dosyası oluşturup dataları ekleyebilirsiniz.
Ekleme işlemi başarılı.
Böylece toplu şekilde data yüklemeyi Document oluşturmayı görmüş olduk.
Customers.json
[
{
"name": "John Doe",
"email": "john.doe@example.com",
"age": 28,
"address": {
"city": "New York",
"state": "NY",
"zip": "10001"
}
},
{
"name": "Jane Smith",
"email": "jane.smith@example.com",
"age": 35,
"address": {
"city": "Los Angeles",
"state": "CA",
"zip": "90001"
}
},
{
"name": "Bob Johnson",
"email": "bob.johnson@example.com",
"age": 42,
"address": {
"city": "Chicago",
"state": "IL",
"zip": "60601"
}
},
{
"name": "Emily Davis",
"email": "emily.davis@example.com",
"age": 30,
"address": {
"city": "San Francisco",
"state": "CA",
"zip": "94101"
}
},
{
"name": "Michael Wilson",
"email": "michael.wilson@example.com",
"age": 25,
"address": {
"city": "Seattle",
"state": "WA",
"zip": "98101"
}
},
{
"name": "Samantha Brown",
"email": "samantha.brown@example.com",
"age": 33,
"address": {
"city": "Miami",
"state": "FL",
"zip": "33101"
}
},
{
"name": "Daniel Lee",
"email": "daniel.lee@example.com",
"age": 29,
"address": {
"city": "Dallas",
"state": "TX",
"zip": "75201"
}
},
{
"name": "Olivia Garcia",
"email": "olivia.garcia@example.com",
"age": 31,
"address": {
"city": "Denver",
"state": "CO",
"zip": "80201"
}
},
{
"name": "Chris Hernandez",
"email": "chris.hernandez@example.com",
"age": 27,
"address": {
"city": "Phoenix",
"state": "AZ",
"zip": "85001"
}
},
{
"name": "Sophia Martinez",
"email": "sophia.martinez@example.com",
"age": 38,
"address": {
"city": "Atlanta",
"state": "GA",
"zip": "30301"
}
}
]
Bir sonraki yazımda görüşmek üzere.