copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
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, looking for any clues like magic numbers, headers, and so on to determine the type of the file
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 temporarily OK Then after sometime the same account gets locked again The database is using oracle XE version Does anybody else have the same issue?
How do I grant read access for a user to a database in SQL Server? The user is already available in the domain but not in the DB So, how can I give them that access with creating a new user and password? Someone told me that it can be done with only specifying the user, domain the DB that you want to give the user the access to without needing to create a new user and password
How do I see active SQL Server connections? - Stack Overflow 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, connect to which database or
Database Stuck in a Single User Mode in SQL Server By using the the dynamic view "sys dm_tran_locks" we can find out the active sessions of the database which is stuck in a single user mode as follows: --Query to find the session_id SELECT request_session_id FROM sys dm_tran_locks WHERE resource_database_id = DB_ID('YourDatabaseName') Now kill the session ID found by above query as follows: -- kill all the processes which are using your