Questions tagged [multiple-schema]

23 questions
5
votes
4 answers

Is it possible to validate XML against multiple schemas in PHP?

I'm wondering if it is possible to validate xml against multiple schemas in PHP or I have to merge my schemas somehow. Thanks for an answer!
MartyIX
  • 27,828
  • 29
  • 136
  • 207
5
votes
1 answer

How To : Entity framework and multiple schemas

I am working with Entity framework. I am using a single database with multiple schemas as, mySchema1.Employee mySchema2.Employee mySchema3.Employee When I generate edmx for this database, it renames the tables as Employee1, Employee2, Employee3…
VJOY
  • 3,752
  • 12
  • 57
  • 90
4
votes
1 answer

Neo4j - How to emulate MySQL multiple schema deployment in Neo4j

With single instance of Neo4j server ( not embedded), how to add multiple schema kind of deployment ( similar to MySQL) in Neo4j ? How is it possible to add / delete schema run time in Neo4j deployed as a server?
PankajM
  • 417
  • 2
  • 10
3
votes
1 answer

Authorize ASP.NET Core 2.1 controller with several schemes at once

Lets assume that we are using authentication with "Abc" schema and respective handler and everything is great. We are able to secure controller simply with [Authorize(AuthenticationSchemes = "Abc", Roles = "admin")] attribute But now appeared need…
2
votes
2 answers

Spring boot 2 hibernate multiple schema

I have one db (MySql) and several schemas (schema_a,schema_b,schema_c). The schemas have same tables, identical. The current schema depends on current user (session) data. For example, current user is from company A, then current schema is…
dosmac
  • 23
  • 4
2
votes
2 answers

Unable to customize the schema for a domain class in Grail & Groovy

We created two different domain objects in Grails and tried accessing from two different schema. Method 1: For example: Student.groovy class Students { String id String name String address Static mapping = { schema:…
2
votes
2 answers

PHP XML Validation

What's the best way to validate an XML file (or a portion of it) against multiple XSD files? For example, I have the following schema for a configuration loader:
efritz
  • 5,125
  • 4
  • 24
  • 33
2
votes
0 answers

ODAC/Entity Framework Model Update Issues

We are looking to introduce odac into our application but I am running into a number of issues and I can't seem to find any solutions that fix our issues. We are using an oracle database and trying to use ODAC 12c Release 1 (12.1.0.1.0) with Oracle…
Steve S
  • 41
  • 1
  • 2
1
vote
2 answers

EF: Cross edmx (same DB) linq-to-entites query

How can I use two EDMXs, in separate assemblies, yet above the SAME database, to create a linq-to-entities query that uses them both? E.g. This is what I am trying to do: using (var context1 = new Entities1()) { using (var context2 = new…
1
vote
1 answer

Django Postgres Multiple Schema Migrations: "No migrations to apply"

Setup: one Postgres database with two schemas: 'default' and 'other'. Using: Django==2.0.10 psycopg2-binary==2.7.7 (no binary verion in production) My database configuration: DATABASES = { 'default': { 'ENGINE':…
Jamie Williams
  • 347
  • 4
  • 12
1
vote
2 answers

DWH from multiple schemas

I have a project in postgresql to create a DWH from multiple schemas. The schemas have the same structure(tables, constrains). I am stuck on this problem : I have a table "employees" in all the schemas that i will use in DWH. The first entry in…
k4br4s
  • 127
  • 8
1
vote
1 answer

Spring Boot - JPA - Postgres ERROR: cross-database references are not implemented:

I am using Spring Boot, JPA and Postgres and I have one database with multiple schemas. I implement a web service using JPA and I receive this error: o.h.engine.jdbc.spi.SqlExceptionHelper : ERROR: cross-database references are not implemented:…
pik4
  • 1,283
  • 3
  • 21
  • 56
1
vote
2 answers

Using Dropwizard & JDBI to query database with multiple schemas?

I'm building a Java Rest API with DropWizard (which uses JDBI) and my requirements are that I need to query multiple MySQL schemas with the same application. It'll basically be one AWS MySQL instance housing multiple schemas -- one schema per…
0
votes
0 answers

liqibase multiple schema update with single user credentials

I have requirements as below: Use liquibase DB manager to update DB objects of multiple schemas using single elevated DB credentials Every schema has different Datasoure objects Every Schema should maintain their own liquibase tables…
Alok Singh
  • 488
  • 2
  • 6
0
votes
1 answer

How to declare multi-tenancy schema spanning datasource within Wildfly

Is there a way to declare a schema spanning datasource configuration within wildfly, so that the underlying database (MariaDB in this case) may consist out of n-different schemas (all with the same structure), each accessible through the defined…
1
2