Viewing 15 posts - 31 through 45 (of 71 total)
You had restarted the service while some operation is happening and now the process should be in roll back or roll forward mode. So sql server initiated the auto...
June 27, 2011 at 6:14 am
check whether do you have performed any dml operation (update, insert or delete) on the database and it is still running. Check you have enough free space on disk...
June 27, 2011 at 4:53 am
Your problem is not clear. Please be ellaborate to understand your problem.
June 27, 2011 at 4:17 am
We didn't add the db_datareader role which will permit the user to perform select operation on the user table. Execute the below statment to provide the same.
Exec sp_addrolemember db_datareader,...
June 27, 2011 at 4:11 am
T-sql, maintenance plan and even if you are using third party tool the information will be stored in these tables.
June 27, 2011 at 3:50 am
I think you are having problem in sequencing the transaction log files. The below query will help you to sequence the same.
SELECT b.physical_device_name,
a.backup_set_id,
Case When...
June 27, 2011 at 3:29 am
Follow the below steps, if you need to create SQL Logins instead of windows
-- Creating Login For Principal
Create Login [PrincipalLoginName] With Password = 'GiveYourPasswordHere', default_database = [GiveYourDBNameHere], Check_policy = OFF;
--...
June 27, 2011 at 3:03 am
Verify the owner of the SP. It might have created by a username other than dbo, probably by the username you used while creating this SP. (i.e) [UserName].[SP_Test]...
May 20, 2011 at 1:14 am
@Lowell - Thanks for pointing me to a better solution.
@ken - I am analyzing your solution. I will get back if I have and doubt. Thanks.
July 28, 2010 at 10:54 am
If you are using Windows XP, you can right click on the Managment Studio and click on "Run As...". Click on the option "The following User" and enter your credentials.
June 21, 2010 at 11:23 am
@ Elliott W and CirquedeSQLeil
I got the problem. My sql server instance is installed in the port 1434. Since the sql browser is reserved to use the port 1434...
July 13, 2009 at 7:24 am
It's better to go through the application and list out the objects used in the application and remove other objects from the database. And make a practive of creating...
June 26, 2009 at 7:42 am
There is no second thought in using NT authentication, but we have to be flexible some times and use a sql authentication as it is not possible always ( particulary...
June 24, 2009 at 3:27 pm
Thanks for a your reply Mani.
As a work around, I had shared a sql login for that user in the dev box ( the project is in development) and he...
June 24, 2009 at 9:34 am
Yes. And also whenever the ServerA/Instance01 is principal and ServerB/Instance02 is witness then the quorum gets lost. I need to identify why the quorum is getting lost in...
May 7, 2009 at 2:06 pm
Viewing 15 posts - 31 through 45 (of 71 total)