Tagged Questions

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 popul …
1
vote
2answers
44 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. …
-1
votes
7answers
112 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 …
1
vote
4answers
115 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 databa …
0
votes
4answers
95 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 E …
0
votes
1answer
135 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 d …
0
votes
1answer
105 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 …
2
votes
1answer
224 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 …
1
vote
5answers
315 views

How can I create a ddl for my jpa entities from java code?

Hi, I look for a way how I can create a ddl for my jpa annotated entities. I prefer a pure java way for this. If possible it would be nice to have generate the drop statements too …
0
votes
2answers
52 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&gt …
0
votes
4answers
825 views

Microsoft Access DateTime Default Now via SQL

I am writing a number of scripts to update numerous Access tables. I would like to add a column to each that has a field called "date_created" that is a timestamp of when the recor …
1
vote
1answer
155 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.
0
votes
2answers
37 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 …
2
votes
1answer
258 views

Define default date value in MySQL, similar to timestamp

I'm using MySQL (nobody's perfect), version 4.1 and I'm used to define some timestamp columns like that: ALTER TABLE foo ADD creation TIMESTAMP DEFAULT NOW() ; I'd like to do ex …
0
votes
5answers
143 views

To prevent the use of duplicate Tags in a database

I would like to know how you can prevent to use of two same tags in a database table. One said me that use two private keys in a table. However, W3Schools -website says that it is …

1 2 3 4 5 next
15 30 50 per page