Questions tagged [dbaas]

DBaaS or DataBase as a Service is used to refer to IaaS database systems specifically written with service delivery in mind.

22 questions
19
votes
3 answers

Is Firebase an all-purpose database?

I've been reading about Firebase and playing with it for a short while. The idea (BAAS) and implementation are impressive, and having programmed with Javascript it seems a viable choice. Not having to deal with scaling and other server side concerns…
Benny
  • 1,457
  • 3
  • 10
  • 15
6
votes
1 answer

How to see the tables created on oracle cloud

I am new to DBaaS, I created a new oracle cloud account and instantiated a DB. I am connecting to the DB using SQL developer and created a new table by logging in as sys user. How do I see the newly created table on oracle cloud using web console? I…
NJMR
  • 1,710
  • 1
  • 21
  • 38
4
votes
2 answers

End-to-end encrypted mobile backend as a service?

I'm thinking of using an MBaaS such as Firebase or Kinvey for my next app, and am wondering if any exist which encrypt application data end-to-end (i.e. such that the encryption keys are never shared with the service provider). This seems feasible…
Joel Dice
  • 121
  • 2
  • 6
2
votes
1 answer

What version of Cassandra is Astra?

looking for information on how to confirm which version of Cassandra is running on Astra? DataStax Astra Database-as-a-Service Cassandra Made Easy in the Cloud Get started in minutes with 5 GB free, no credit card needed. Built on open-source…
2
votes
1 answer

Not able to connect to database using Connection class

I really dont know what is wrong in the below code. I am able to connect from SQL developer but through JDBC it is giving exception. package com.shruti.jdbc; import java.sql.Connection; import java.sql.DriverManager; public class ReadData { …
user14046507
1
vote
2 answers

why is MongoDB Atlas the only managed MongoDB 4+ DBaaS provider

I have been researching using a MongoDB DBaaS provider and I would like to use the latest version of MongoDB. V4.2 at the time of writing Some providers I took a look at are: ObjectRocket ScaleGrid mLab MongoDB Atlas I'm wondering why MongoDB…
Eelco
  • 101
  • 7
1
vote
0 answers

Problem in connection to DBaaS using cx_oracle

I am trying to connect to an external DBaaS I using the following python code import cx_Oracle ip = 'my_ip' port = 49407 db = 'my_db_name' user_name = 'username' user_pass = 'password' conn = cx_Oracle.connect(user_name, user_pass,…
Carabes
  • 112
  • 10
1
vote
0 answers

Parse migration tool to migrate directly to dynamodb

We have to migrate from parse server but use parse API to own hosted server. We have two options Mongo db Amazon Dynamodb The parse migration tool can be used to migrate to mongo db but we want to move to Amazon Dynamo db after reading comparison…
maheshsgr
  • 1,244
  • 9
  • 10
1
vote
2 answers

Backend as a service (BaaS) or old school SQL server for Mobile APP Remote Database

I'm looking forward to create a mobile app with a remote database. I've already tried SQL server and PARSE. I haven't really used these that long to know any significant difference since I used them for experimentation. I see a lot of advertisements…
chris_techno25
  • 2,175
  • 4
  • 16
  • 27
1
vote
2 answers

Which tools for implementing distributed logging?

I'm trying to pick a set of tools to implement logging (starting with just error logging at first) for the different components of our system. The system consists of a set of client implementations (iOS, web MVC etc) and a backend. I'd like to be…
Alexandr Kurilin
  • 7,188
  • 6
  • 43
  • 72
1
vote
1 answer

Calling parse javascript function from HTML form event

I've been trying to call a simple javascript login function from an html form submission and it doesn't seem to be calling the method. I have tried moving the method to an external .js class and the function still is not working. The java script…
0
votes
0 answers

How to connect to a Oracle Cloud Native Database using Python

I am trying to connect to Oracle CNDBaaS using python and execute some queries. I am using the Cx_Oracle module.Here's the code. I am taking input from config.properties file. source_username = config.get("Source Details", "USERNAME") …
0
votes
1 answer

Is there any advantage in using a DBaaS like mLab instead MongoDB locally?

I have mostly used mlab for small apps that i built while learning MEAN Stack, but not for any production level web app.
Pulkit chadha
  • 602
  • 9
  • 13
0
votes
1 answer

Connecting MongoDB instance (on Compose) directly to MongoDB on Bluemix

I am looking for a Tool or Tool Set that can connect a MongoDB instance (on Compose) directly to MongoDB on Bluemix to extract / and move data from a MongoDB database on compose.com to a MongoDB database on Bluemix Public. Is there a way to do this…
0
votes
1 answer

Can Amazon AWS RDS MySQL databases be used in Azure?

We have mysql databases which we want to host on AWS RDS and want to use in Azure VM and web app. Both of them located in Singapore region. Is this possible? If yes, How? What are pros and cons? And how to do this?
Shubham Badal
  • 985
  • 11
  • 32
1
2