Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Can anyone tell me how does the instance recovery happens in sql server when the instance has crashed?
Does it use boot page information for instance recovery?
And during recovery how the before images and after images are recreated?
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 days ago.
Improve this question
I am trying to update a studnet record database.
Application is build using RAD studio in C++
I tryig giving all the permision in the file manager to all the Users and also Grant permision to INSERT UPDATE DELETE to all users in IB Console.
I just wanted to insert data in my database
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I have a file named "CreateDatabase1.script".
I want to create a database from this file but this file is not executable in SQL
Server management studio. How can I run this file and create this database??
You need to associate a file extension with SSMS Editor.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I want to insert or update or delete in database automatically after cross a time e.g 8 hours.
Is it with jobs in SQL Server?
Thanks.
You can create a SQL Server job with TSQL code in it and schedule this job as appropriate.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Failed to update database "Adventure Works 2012" because the database is read-only. using sql server 2012
You are being incredibly vague with your question but you should be able to use:
ALTER DATABASE [AdventureWorks] SET READ_WRITE
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Fellow devs,
From SQL Server Management Studio, I can see that a lot of SPIDs are still present eventhough the application which has triggered them has already used and closed the query. What could be causing this?
Any avenues for me to look at concerning this? Thanks.
connection pooling by the client driver is most likely the cause.
-don