About 12,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. How do I grant read access for a user to a database in SQL Server?

    Jun 8, 2012 · I want to grant access to a user to a specific database with read and write access. The user is already available in the domain but not in the DB. So, how can I give them that …

  3. How do I see active SQL Server connections? - Stack Overflow

    Jan 21, 2019 · I am using SQL Server 2008 Enterprise. I want to see any active SQL Server connections, and the related information of all the connections, like from which IP address, …

  4. How can I generate an entity–relationship (ER) diagram of a …

    I want to generate an ER diagram of an SQL database using Microsoft SQL Server Management Studio (SMSS). However, I don’t know how to. I found this technique online: Making ER …

  5. python - How do I connect to SQL Server via sqlalchemy using …

    70 sqlalchemy, a db connection module for Python, uses SQL Authentication (database-defined user accounts) by default. If you want to use your Windows (domain or local) credentials to …

  6. MongoDB: How to find the exact version of installed MongoDB

    Feb 3, 2021 · had the same question and db.version() gives me the same version as the shell version, but still wondering if this is always the case, or just coincidence in my case. Also, …

  7. sql - How do we check version of Oracle - Stack Overflow

    May 28, 2020 · How do we check version of Oracle on which we are working? How do we check the version of the interface on which we are working? I have tried select v$ from version ;

  8. How to get the connection String from a database - Stack Overflow

    May 7, 2012 · The easiest way to get the connection string is using the "Server Explorer" window in Visual Studio (menu View, Server Explorer) and connect to the server from that window. …

  9. How to connect to a local database in SQL Server Management …

    Apr 6, 2017 · After connection to server you can create a DB in which you want the dump to get imported. If your SQL dump contains create Database statement, then you don't need to …

  10. PostgreSQL: Remotely connecting to Postgres instance using psql …

    Connect remotely - psql -U <db_username> -h <IP_address> - in case psql is running on a port other than 5432 on the remote server, specify port by adding -p <port_number> A little plus …