Jag har, Sql Server 2000, hämtat in en backup:ad databas som låg i sql server 7. Alltså, jag är inte så tokhemma på det här men jag hittade detta i import-wizarden, hoppas att det är det du menar. Njaej, vad jag var ute efter är vad som står om du följer detta: Ok, jag fattar. Problemet är att det bara går att klicka på den då jag skall skapa en tabell, men jag vill ju "appenda" data till en befintlig tabell.Collate ??!
Nu då jag försöker importera data får jag ett felmeddelande som lyder :
" Error at Destination for Row number 1. Errors encountered so far in this task: 1. Line 1:Incorrect syntax near 'COLLATE'. "
Jag använder import-wizarden och det spelar ingen roll hur datat jag försöker importera är lagrat. Jag har även exporterat lite data ur db:n som jag sedan försöker ladda in igen, men det blir samma fel.
Är det någon som har en idé om vad som gått snett?Sv: Collate ??!
<code>
'**********************************************************************
' Visual Basic Transformation Script
' Copy each source column to the
' destination column
'************************************************************************
Function Main()
DTSDestination("Period") = DTSSource("Col001")
DTSDestination("Lan") = DTSSource("Col002")
DTSDestination("Kon") = DTSSource("Col003")
DTSDestination("Knamn") = DTSSource("Col004")
DTSDestination("Kkort") = DTSSource("Col005")
DTSDestination("ARBUS") = DTSSource("Col006")
DTSDestination("ARBMS") = DTSSource("Col007")
DTSDestination("UTBREG") = DTSSource("Col008")
DTSDestination("OVRAV") = DTSSource("Col009")
DTSDestination("PGM") = DTSSource("Col010")
DTSDestination("ALOS") = DTSSource("Col011")
DTSDestination("DELT") = DTSSource("Col012")
DTSDestination("SK1491") = DTSSource("Col013")
DTSDestination("KVAR") = DTSSource("Col014")
DTSDestination("LAMNAT") = DTSSource("Col015")
DTSDestination("pARBUS") = DTSSource("Col016")
DTSDestination("pARBMS") = DTSSource("Col017")
DTSDestination("pUTBREG") = DTSSource("Col018")
DTSDestination("pOVRAV") = DTSSource("Col019")
DTSDestination("pTot") = DTSSource("Col020")
Main = DTSTransformStat_OK
End Function
</code>Sv: Collate ??!
När du har dialogen för att välja vilka tabeller som ska importeras, och till vilka tabeller de ska importeras, så finns det en knapp som i kolumnen Transform. Tryck på den, och sen Edit SQL. Det scriptet menade jag.Sv: Collate ??!
Jag har nu skapat om databasen från scratch, dvs jag använder inte min sql7-backup och då funkar det med importen, så problemet är löst. Men tack i alla fall.