public DbmsSchedulerJobFileContentCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "dbms_scheduler job";
 }
Ejemplo n.º 2
0
 public ProceduresFileContentCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "procedure";
 }
Ejemplo n.º 3
0
 public MaterializedViewFileContentGenerator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "materialized view";
 }
Ejemplo n.º 4
0
 public SynonymFileContentCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "synonym";
 }
Ejemplo n.º 5
0
 public ProceduresFileContentCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "procedure";
 }
 public ForeignKeyConstraintFileCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "foreign key";
 }
Ejemplo n.º 7
0
 public DbLinkFileContentCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "database link";
 }
Ejemplo n.º 8
0
 public DbmsSchedulerJobFileContentCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "dbms_scheduler job";
 }
Ejemplo n.º 9
0
 public PackagesFileContentGenerator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "package";
 }
Ejemplo n.º 10
0
 public DbLinkFileContentCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "database link";
 }
Ejemplo n.º 11
0
 public TriggerFileContentCreator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "trigger";
 }
Ejemplo n.º 12
0
 public ForeignKeyConstraintFileCreator(
     DataDictionaryDbContext dbContext, 
     IFileSystemHelper fileSystemHelper, 
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "foreign key";
 }
Ejemplo n.º 13
0
 public ViewFileContentGenerator(
     DataDictionaryDbContext dbContext,
     IFileSystemHelper fileSystemHelper,
     IDependencyMatrix dependencyMatrix)
     : base(dbContext, fileSystemHelper, dependencyMatrix)
 {
     ObjectType = "view";
 }
Ejemplo n.º 14
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_SYNONYMS synonym, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _synonym          = synonym;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 15
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_TYPES type, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _type             = type;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 16
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_SCHEDULER_JOBS schedulerJob, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _schedulerJob = schedulerJob;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 17
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_SCHEDULER_JOBS schedulerJob, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _schedulerJob     = schedulerJob;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 18
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_SYNONYMS synonym, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _synonym = synonym;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 19
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_TYPES type, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _type = type;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 20
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_PROCEDURES procedure, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _procedure = procedure;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 21
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_MVIEWS mview, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _mview = mview;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 22
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_MVIEWS mview, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _mview            = mview;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 23
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_PROCEDURES procedure, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _procedure        = procedure;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 24
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_CONSTRAINTS foreignKey, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _foreignKey       = foreignKey;
     _dependencyMatrix = dependencyMatrix;
 }
Ejemplo n.º 25
0
 public DependenciesSqlGenerator(DataDictionaryDbContext dbContext, DBA_CONSTRAINTS foreignKey, IDependencyMatrix dependencyMatrix)
     : base(dbContext)
 {
     _foreignKey = foreignKey;
     _dependencyMatrix = dependencyMatrix;
 }