Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make use of a .db file in SQL server 2008?

I have access to a .db file that I would like to query somehow to pull data from it for my other database. So far I have been unable to do this through an ODBC or SQL server directly. I would think that this is possible but I can't seem to find any ideas how.

like image 440
user3728545 Avatar asked Jan 11 '23 03:01

user3728545


2 Answers

.db files are standalone files, so cannot be Opened through SSMS. Use SQLITE DB BROWSER to work on those files. Thanks :)

like image 56
Akshay Antony Avatar answered Jan 22 '23 04:01

Akshay Antony


.db files are standalone files, which means they don't need server to work, which also means you can't open it with SQL Server 2008.
More more info check THIS LINK

like image 35
Hoh Avatar answered Jan 22 '23 04:01

Hoh