Ask a Question related to Coldfusion Database Access, Design and Development.
-
xixi #1
copy table
hi , i am using sql create table xxx like aaa including indentity
to copy a table , but if table aaa has primary keys specified and xxx
has the same column to specify primary key, how to copy this attribut
together to table xxx? (right now it is not) thanks
xixi Guest
-
Copy row from table to table
What is the easiest way to copy a particular row from one table to another (assuming all the columns are exactly the same). I want to maintain a... -
How to get Table Parameters to copy table
Hey all, I'm trying to do the following in ASP : - Determine the parameters(field names and data types) of a table . - Create a new table... -
Copy a record to another table?
Hello friends!! I have two forms each with its own subform. The first form consist of a main form with a subform for PARTS COSTS,(a... -
Copy data into same table
I have table Properties. I want to select data for one item and to add that data in same table but for other item (all values would be the... -
Copy data from one table to another
Simon this is very nearly the exact same question you asked in "DTS task" Please do not post the same Q under different headings See my reply... -
ranger #2
copy table
i need to copy a default table (surv) as a new table with a variable name...
all works ok but primary key is not carried over as a primary key. note that
default table (surv) has no data, just fields. <cfquery name='crtcusttbl'
datasource='survey_table'> SELECT * INTO #tblnm# FROM surv </cfquery>
because primary key 'tblID' was not made into a primary key, i took the field
off of the default table and added it as below... <cfquery name='crtcusttbla'
datasource='survey_table'> ALTER TABLE #tblnm# ADD tblID INTEGER NOT NULL
PRIMARY KEY ; </cfquery> how come i had to do this... is there any way to make
primary key an autonumber too? this is msAccess for now.
ranger Guest



Reply With Quote

