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

    12 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 …

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

    Aug 8, 2009 · 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, …

  3. How to get the list of all database users - Stack Overflow

    Sep 18, 2013 · I am going to get the list of all users, including Windows users and 'sa', who have access to a particular database in MS SQL Server. Basically, I would like the list to look like as …

  4. sql - Grant execute permission for a user on all stored procedures …

    Mar 25, 2011 · I generated script from old database, created a new database and imported all data from old database. So far so good, however, no user has execute rights for stored …

  5. sql - Script to kill all connections to a database (More than ...

    In my case, I'm using SQL Server 14.0 with Management Studio 17.9.1, and I have to say this is the only answer thats works to me. I was wanting to delete some databases wich accomplish a …

  6. ORA-28000: the account is locked error getting frequently

    ORA-28000: the account is locked Is this a DB Issue ? Whenever I unlock the user account using the alter SQL query, that is ALTER USER username ACCOUNT UNLOCK, it will be …

  7. Set database from SINGLE USER mode to MULTI USER - Stack …

    The DB went into "Single User" Mode when i was attempting to restore a backup. I hadn't created a backup of the target database before attempting to restore (SQL 2017). this will get you …

  8. How to grant a Managed Identity permissions to an Azure SQL …

    Aug 28, 2023 · ALTER ROLE db_datawriter ADD MEMBER [MyManagedIdentity]; This is however failing because this requires that either the SQL Server or the GitHub action needs to …

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

    Suppose that I have a database which name is testdb in test server. I also have a database named proddb in prod server. Now I want to select data of a table of testdb database from …

  10. EF Migrations: Rollback last applied migration? - Stack Overflow

    If you have multiple DB contexts you will also need to specify the context by adding the context parameter e.g. : Update-Database 201207211340509_MyMigration -context myDBcontext …