There is some information in this forum and on the web:
http://forums.microsoft.com/MSDN/Search/Search.aspx?words=DTS+migration&localechoice=9&SiteID=1&searchscope=forumscope&ForumID=80
http://www.google.com/search?hl=en&q=migration+ssis+to+dts
There is some information in this forum and on the web:
http://forums.microsoft.com/MSDN/Search/Search.aspx?words=DTS+migration&localechoice=9&SiteID=1&searchscope=forumscope&ForumID=80
http://www.google.com/search?hl=en&q=migration+ssis+to+dts
The tables are OK, but I see the old Access views... as TABLE in
SQLserver!!
Any suggestions?
--Access isn't "smart" enough to upsize its queries into MS SQL Server views
so instead it just runs the query and creates a table from the result.
You'll have to port all of the queries manually (although I'm sure there are
tools or at least guides to help you with this) since Access's SQL differs
from MS SQL Server's SQL. Some of the most common issues I've run in are
that MS SQL Server doesn't have all those handy VB functions and IsNull()
does not work the same way in both.
"YURYSSG" <yuryssg@.yahoo.it> wrote in message
news:2i85qbFjsi78U1@.uni-berlin.de...
> I migrated a DB from Access 2000 to SQLserver 2000.
> The tables are OK, but I see the old Access views... as TABLE in
> SQLserver!!
> Any suggestions?
> --|||"Jonathan Amend" <cephas_is@.hotmail.com> /
: news:40bf8fc4$1_3@.aeinews...
> Access isn't "smart" enough to upsize its queries into MS SQL Server views
> so instead it just runs the query and creates a table from the result.
> You'll have to port all of the queries manually (although I'm sure there
are
> tools or at least guides to help you with this) since Access's SQL differs
> from MS SQL Server's SQL. Some of the most common issues I've run in are
> that MS SQL Server doesn't have all those handy VB functions and IsNull()
> does not work the same way in both.
> "YURYSSG" <yuryssg@.yahoo.it> wrote in message
> news:2i85qbFjsi78U1@.uni-berlin.de...
> > I migrated a DB from Access 2000 to SQLserver 2000.
> > The tables are OK, but I see the old Access views... as TABLE in
> > SQLserver!!
> > Any suggestions?
> > --|||"Jonathan Amend" <cephas_is@.hotmail.com> wrote:
>Access isn't "smart" enough to upsize its queries into MS SQL Server views
>so instead it just runs the query and creates a table from the result.
>You'll have to port all of the queries manually (although I'm sure there are
>tools or at least guides to help you with this) since Access's SQL differs
>from MS SQL Server's SQL. Some of the most common issues I've run in are
>that MS SQL Server doesn't have all those handy VB functions and IsNull()
>does not work the same way in both.
FWIW I was able to programmatically make views out of many of my
Access queries.
I had much more code than this but the basics were as follows.
strNewSQL = adhReplace(Q.SQL, vbCrLf, " ")
strNewSQL = Left(strNewSQL, InStr(strNewSQL, ";") - 1)
strNewSQL = ConvertTrueFalseTo10(strNewSQL)
tagRetryAfterCleanup:
Set myquerydef = dbsPermanent.CreateQueryDef("")
'Q.Name & " DAO Test")
myquerydef.ReturnsRecords = False
myquerydef.Connect = strConnect
myquerydef.SQL = "CREATE VIEW [" & strQueryName & "]
AS " & strNewSQL
myquerydef.Execute
myquerydef.Close
Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Hi all,
I'm in a middle of a server migration,
Old server:
SBS 2003 sp1 with SQL server 2000 and SQL server CE
New server:
SBS R2 with SQL server 2005 and SQL server mobile
I have tried to find on internet how to migrate all my databases that i have on old server in to the new one, but i can't find anything on it.
In old server i have replications set and my CE database is on SQL 2000 how this will fit on SQL 2005 / SQL mobile?
If some one can point me on good way i appreciate.
Cheers,
For upgrading from SQL CE 2.0 to SQL Compact 3.1, this MSDN article might be useful:
http://msdn2.microsoft.com/en-us/library/bb286906.aspx
(Upgrading from SQL Server CE 2.0 to SQL Server 2005 Compact Edition)
|||Hi tks, for the replay,
But my problem is not on pocket pc side but server side.
On my old sever i use SQL CE so my pockets can get data from SQL server, now on this new SQL server version; we have this new option "SQL Mobile".
How cold i backup databases from old SQL server 2000 and how to restore on the new SQL server 2005.
If possible to backup and restore, were do i have to restore in Mobile or in SQL server 2005.
Regards,
|||This 350 page document should keep you happy for a while (including "Upgrading replicated databases"):
http://www.microsoft.com/downloads/details.aspx?FamilyID=3d5e96d9-0074-46c4-bd4f-c3eb2abf4b66&DisplayLang=en
Hi all,
I'm in a middle of a server migration,
Old server:
SBS 2003 sp1 with SQL server 2000 and SQL server CE
New server:
SBS R2 with SQL server 2005 and SQL server mobile
I have tried to find on internet how to migrate all my databases that i have on old server in to the new one, but i can't find anything on it.
In old server i have replications set and my CE database is on SQL 2000 how this will fit on SQL 2005 / SQL mobile?
If some one can point me on good way i appreciate.
Cheers,
For upgrading from SQL CE 2.0 to SQL Compact 3.1, this MSDN article might be useful:
http://msdn2.microsoft.com/en-us/library/bb286906.aspx
(Upgrading from SQL Server CE 2.0 to SQL Server 2005 Compact Edition)
|||Hi tks, for the replay,
But my problem is not on pocket pc side but server side.
On my old sever i use SQL CE so my pockets can get data from SQL server, now on this new SQL server version; we have this new option "SQL Mobile".
How cold i backup databases from old SQL server 2000 and how to restore on the new SQL server 2005.
If possible to backup and restore, were do i have to restore in Mobile or in SQL server 2005.
Regards,
|||This 350 page document should keep you happy for a while (including "Upgrading replicated databases"):
http://www.microsoft.com/downloads/details.aspx?FamilyID=3d5e96d9-0074-46c4-bd4f-c3eb2abf4b66&DisplayLang=en
Hi all,
I'm in a middle of a server migration,
Old server:
SBS 2003 sp1 with SQL server 2000 and SQL server CE
New server:
SBS R2 with SQL server 2005 and SQL server mobile
I have tried to find on internet how to migrate all my databases that i have on old server in to the new one, but i can't find anything on it.
In old server i have replications set and my CE database is on SQL 2000 how this will fit on SQL 2005 / SQL mobile?
If some one can point me on good way i appreciate.
Cheers,
For upgrading from SQL CE 2.0 to SQL Compact 3.1, this MSDN article might be useful:
http://msdn2.microsoft.com/en-us/library/bb286906.aspx
(Upgrading from SQL Server CE 2.0 to SQL Server 2005 Compact Edition)
|||Hi tks, for the replay,
But my problem is not on pocket pc side but server side.
On my old sever i use SQL CE so my pockets can get data from SQL server, now on this new SQL server version; we have this new option "SQL Mobile".
How cold i backup databases from old SQL server 2000 and how to restore on the new SQL server 2005.
If possible to backup and restore, were do i have to restore in Mobile or in SQL server 2005.
Regards,
|||This 350 page document should keep you happy for a while (including "Upgrading replicated databases"):
http://www.microsoft.com/downloads/details.aspx?FamilyID=3d5e96d9-0074-46c4-bd4f-c3eb2abf4b66&DisplayLang=en