0
votes
0answers
6 views
How to use Nhibernate Validator + NHib component + ddl
I just configured my NHibValidator. My NHibernate creates the DB
schema. When I set MaxLenght="20" to some property of a class then in
the database the length appears in the database column. I am …
0
votes
3answers
35 views
Flag column or foreign key?
I have ENTERPRISES and DOMAINS table. The property of each enterprise is that it should have a single primary domain, but it can have more than one domain. I have come up with this table structure
…
0
votes
3answers
30 views
How can I programmatically retrieve the alter view script for a view in SQL Server 2005.
We allow our uses to alter certain views for reports and what not based on some application field meta data that we keep track of in our application. These fields can be created at run time. I have …
0
votes
2answers
32 views
DropDownList in C#, getting DropDownList items overflow after every time using selecting an item
Hello all, well the problem is that i am trying to get DDL to:
1. Recive catagories from a DB tabel - working
2. OnChange select from a different table the products by the item in the DDL - working
…
0
votes
0answers
13 views
Dropdownlist select
I have a dropdown list that searched a column in database table and returns items to listbox in DDL's selectchange event. In this same event I want to include code that will populate teh listbox with …
1
vote
4answers
215 views
T-SQL Scripts to copy all table constraints
I have created many tables on my local database and moved them to production database.
Now I am working on fine tuning the database and created many constraints on my local database tables such as …
-1
votes
7answers
117 views
Can we create tables dynamically in MySQL?
Can we create tables dynamically in MySQL? If so, how?
Dynamic means at run time....ie via procedure AND HOW????
I am using dotnet
Ans--> yes we can create...but problem is i want to change the name …
0
votes
4answers
145 views
Anyway to create a SQL Server DDL trigger for “SELECT” statements?
I am dealing with some sensitive Accounting tables and I would like to audit any SELECT statement executed on the table or any views associated with them.
I did not find any DDL Events on BOL (Books …
3
votes
2answers
92 views
SQL Server parallels to Oracle DBMS_METADATA.GET_DDL ?
I'm looking for command line or scripted solutions to pull the DDL out of SQL Server 2005+ for all database objects: tables, stored procs, views, indices/indexes, constraints, etc. GUI tools are not …
0
votes
1answer
148 views
Ruby / Rails - Reverse Migration - DDL to Ruby Code
Any tools in Ruby or Rails that would allow me to extract from database all the table schema and generate Ruby equivalent "DLL" statements?
Something that would allow me to port schema from say …
0
votes
1answer
209 views
Generate Table/View schema from LINQ-TO-SQL DBML file
I'd like to have a single source of the description of the data structure.
Some people are asking can the DBML file being refreshed when it is changed in the database. The way I do is stupid but …
0
votes
2answers
40 views
Indexing varchars & Foreign Keys
I have two tables defined below.
Create table tickets (id long not null,
reseller long not null,
constraint pk_lock primary key (id));
Create table ticketRegistrations (id long not null,
customer …
2
votes
1answer
312 views
How can I create a unique index in Oracle but ignore nulls?
I am trying to create a unique constraint on two fields in a table. However, there is a high likelihood that one will be null. I only require that they be unique if both are not null (name will …
0
votes
2answers
71 views
How does one extract the definition of a view using standard SQL?
In trying to answer this question for myself I came across this nugget, after eventually adding "oracle" to my query terms:
select DBMS_METADATA.GET_DDL('TABLE','<table_name>') from DUAL;
…
1
vote
1answer
180 views
How to rename a column in SQL?
What is the best practice when it comes to renaming a table column using SQL (MS SQL Server 2005 variant)? This assumes that there is data in the column that must be preserved.
