Friday, March 30, 2012
Need Help ASAP! FoxPro to MSSQL 2000 Conversion question..
It appears that FoxPro 2.6 stores it's null value dates as 12:00:00 AM which is causing errors when importing the data into MSSQL 2000.
The format of all of the other dates is mm/dd/yyyy
Has anyone else encountered this? is there a filter, or a a script or switch somewhere to replace the NULL values with something that MSSQL is happier with?
..:: EDIT ::..
Looking @. the properties of the affected columns, it looks like they are set as smalldatetime, but if i switch them to datetime with a length of 8 it imports just fine.
So.. now my task is to update all of the columns from smalldatetime to datetime.
sugggestions?
Thanks in advance!
Joe..::bump::..
anyone?|||Use DTS.sql
Wednesday, March 21, 2012
Need basic guidance on massive access to sql conversion
I have a rather daunting task ahead of me. I have ot take an access mdb and bring it into sql express. Converting the tables is not a biggie, but I have more than 2500 queries that need to be brought over. I have several questions.
1. In many places I use queries with parameters as views. For example I might have a query that takes a couple of parameters and then turn around write another query that uses the first query as a table. Is there a way to do parameterized views in Sql?
2. Does anyone know of a decent automated tool to do this? The upsizing wizard is useless and I tried teh sql migration assistant, and it doesn't convert queries that have parameters.
3. Has anyone done anything on this kind of scale before?
Thanks ... Ed
1. The closest to parameterized views is using Table Valued Functions. Check in Books Online about using TVFs.
2. No 'decent tools' known. Parameterized views can be 'troublesome'.
3. Yes, and it will take a lot of dilligent and concentrated effort.
and 4. Good Luck -because you WILL need it!