About 14,200,000 results
Open links in new tab
  1. File extension .DB - What kind of database is it exactly?

    If you're on a Unix-like platform (Mac OS X, Linux, etc), you could try running file myfile.db to see if that can figure out what type of file it is. The file utility will inspect the beginning of the file, …

  2. 衰减的单位dB是什么意思? - 知乎

    Oct 3, 2013 · 一、dB的基本概念. 在生活中,提到dB(分贝)这个单位,通常是和声音联系到一起,好像它仅仅是一个声学单位。但实际上,dB这个单位应用很广泛,在声学、电子学、光学 …

  3. database - How to open this .DB file? - Stack Overflow

    I don't think there is a way to tell which program to use from just the .db extension. It could even be an encrypted database which can't be opened. You can MS Access, or a sqlite manager. …

  4. How to check and calculate the complete size of oracle database ...

    Jun 27, 2020 · Actual space used by complete DB, all schemas, specific user, objects, and quota space. Space occupied by dba_recyclebin for all DB and users; Size of physical and …

  5. Create Local SQL Server database - Stack Overflow

    Apr 11, 2017 · I've used SQL Server Management Studio before, but only when the server is already up and running. I need to start from the beginning and create my own instance on the …

  6. How to select data of a table from another database in SQL Server?

    I've used this before to setup a query against another server and db via linked server: EXEC sp_addlinkedserver @server='PWA_ProjectServer', @srvproduct='', @provider='SQLOLEDB', …

  7. How to get SID, Service Name and Port for Oracle database?

    Jun 8, 2018 · I have oracle database running on address xx.xx.xx.xx. I know login, password and initial catalog. I am trying to set up new connection in Oracle SQL Developer so I can access …

  8. Find Size of a Database in Oracle - Stack Overflow

    Nov 29, 2010 · An oracle database consists of data files, redo log files, control files, temporary files. The size of the database actually means the total size of all these files.

  9. Listing information about all database files in SQL Server

    you can use sys.master_files for get location of db and sys.database to get db name. SELECT db.name AS DBName, type_desc AS FileType, Physical_Name AS Location FROM …

  10. How do I unlock an SQLite database? - Stack Overflow

    Nov 19, 2024 · In that case, a workaround is to replace the database file with a fresh copy that isn't locked on the NFS server (mv database.db original.db; cp original.db database.db). Note …