Hi, a few days ago I've migrated to my 3.70 version to SQL. The problem is that I can't copy and entire local copy of the .fdb database. When I do it, it shows only the data before migration, it's very strange. I need it entire to do local testings. Before migration I could do "copy and paste", for example, but now I can't. How can I do that?.
Thanks in advance.
0
Comments
-.fdb is for native DB.
-.mdf,.ndf,.ldf are SQL files.
So if you want to create a local copy in a native DB, you need to do a native backup+restore.
If you want to create a local copy in a SQL DB, you can copy -.mdf,.ndf,.ldf are SQL files (after taking the database ofline) and then re-attach the DB. Or use a SQL backup-restore.
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
You need a sql server installation to work locally.
To have a copy on your local installation, there are some possible ways (in this preferable order):
1) SQL backup (COPY ONLY if you get one from production) and restore on your local server (no need to create the DB first)
2) Take the DB off-line (don't do that in production!) and copy the files to your local server and attach them
3) Make a native backup (quite difficult and long to do that!). Create a DB locally through your NAV-client and restore the DB.
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
Thanks for help.
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!