About 18,400,000 results
Open links in new tab
  1. How to connect Python to Oracle using oracledb - Stack Overflow

    Nov 1, 2023 · I'm trying to connect to Oracle using using the following Python script: import oracledb connection = oracledb.connect(user = 'user', password = 'PW', ...

  2. sql server - Database stuck in "Restoring" state - Stack Overflow

    Happened here also, DB stuck in restore/single-user after possible connection break. Killed all other SPIDs from new session but still stuck. Was able to drop database as solution.

  3. 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 …

  4. 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 …

  5. 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 …

  6. 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 …

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

  8. sql - How to query MongoDB with "like" - Stack Overflow

    Jul 22, 2010 · I want to query something with SQL's like query: SELECT * FROM users WHERE name LIKE '%m%' How can I achieve the same in MongoDB? I can't find an operator for like in ...

  9. Xampp-mysql - "Table doesn't exist in engine" #1932

    Dec 28, 2016 · 0 If you have tried all the above answers and yet failed, first try to fix your db by running this command, mysqlcheck --repair my_db_name -u root -p And then if issue fixed, If …

  10. What is the format for the PostgreSQL connection string / URL?

    Aug 27, 2010 · What is the format for the PostgreSQL connection string (URL postgres://...) when the host is not the localhost?