Viewing 15 posts - 16 through 30 (of 35 total)
Hi,
I saved the change script after adding manualy the IDENTITY property to the autoid column in Enterprise Manager. This is the generated script:
BEGIN TRANSACTION
SET QUOTED_IDENTIFIER ON
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
SET...
December 13, 2007 at 12:53 am
December 10, 2007 at 12:43 am
Hi,
you can begin with reading this:
http://msdn2.microsoft.com/en-us/library/ms191428.aspx
Regards,
Oana.
December 10, 2007 at 12:35 am
December 3, 2007 at 12:48 am
Hi,
please read this:
http://articles.techrepublic.com.com/5100-22_11-5068954.html
hope it helps 😉
Regards,
Oana.
November 29, 2007 at 2:09 am
Hi,
write this at the beginning of you code
SET INDENTIY_INSERT REAL_TABLE ON -- "disables" the identity column
EXECUTE sp_xml_preparedocument @Pointer OUTPUT,@xml
INSERT INTO #tmp_tbl
SELECT *
FROM
OPENXML (@Pointer,'DATA/OBJECTS/OBJECTS_ITEM',2)
WITH REAL_TABLE
and SET INDETITY_INSERT REAL_TABLE OFF...
November 29, 2007 at 1:50 am
Hi there,
Did you check if the number of columns in the otherdb..table matches the number of columns in the activedb..table?
I would suggest this:
INSERT INTO otherdb..table (list_of_columns)
SELECT list_of_columns FROM activedb..table
Regards,
Oana.
November 29, 2007 at 1:46 am
Hi,
Application Roles
Application roles are the SQL Server roles created to support the security needs of an application. Often database applications enforce their own security based on the application logic. For...
November 29, 2007 at 12:19 am
Hi there,
You can use the Attach Database option where you can specify the .mdf and .ldf files to be attached and a new database will be created.
Is this what you...
November 26, 2007 at 1:08 am
Hello,
there are more ways to do this.
what i would do is to copy the source table on the destination table using DTS.
after that you can insert the missing data into...
November 16, 2007 at 7:31 am
everybody makes mistakes .... :ermm:
Kind regards,
Oana.
November 9, 2007 at 5:07 am
wow 🙁
I hope this time you can see the xml example.
Sorry ...
November 7, 2007 at 5:13 am
I don't know what happend with the xml example 🙁
Schuster</Last_Name?
...
November 7, 2007 at 5:10 am
Hi,
Maybe this will help:
http://www.microsoft.com/technet/prodtechnol/sql/2005/workingwithtempdb.mspx#EHFAC
Oana.
November 7, 2007 at 3:03 am
Viewing 15 posts - 16 through 30 (of 35 total)