Viewing 15 posts - 16 through 30 (of 33 total)
Yes, There are no settings in SQL Server.
October 3, 2010 at 11:23 pm
Backup Devices can be a tape drive or a disk file. Some times u need to take backup to a tape drives automatically at that time backup devices are helpful.
September 28, 2010 at 5:49 am
Nice Script it help me a lot.
September 27, 2010 at 11:14 pm
I have tried to solve it in alternate way but through t-sql you will definitely need permission on sys tables.
Omeswar Danwada
September 27, 2010 at 11:06 pm
Hi, I am Attaching the procedure for creating Standard Maintenance plan, we are following the same in our project it is working fine for us, Try this out.
Omeswar Danwada
September 27, 2010 at 10:17 pm
Thanks,
As i have two log files in my DB, how can we know that which Log File is Active.
September 8, 2010 at 2:51 am
I also did the same thing, But my question when we login with say for example 'Login1' account and is it possible to delete the same Login 'Login1'. You said...
September 7, 2010 at 12:39 am
COOL_ICE,
I tried to delete SQL Login while i Loged in, but its not deleting. Can u tell me how u do this.
Thanks,
Omeswar Danwada.
September 6, 2010 at 5:46 am
Hi,
Try the following
DECLARE @LoginName sysname
DECLARE @sql NVARCHAR (2000)
BEGIN
DECLARE cur_Loginfetch CURSOR FOR
SELECT [name] FROM master.sys.server_principals WHERE TYPE = 'G'
...
September 1, 2010 at 1:31 am
I too agree with Ananth. Can u explain how u did that. 🙂
August 31, 2010 at 11:59 pm
Hey You can uninstall the SQL Server 2005, I have tried it on my Local PC i didn't face any issues. But make sure that you have moved all the...
August 24, 2010 at 1:18 am
Just now i have checked in my system, i am able to start and stop the services.
August 20, 2010 at 6:35 am
August 20, 2010 at 6:27 am
Hi,
Generally with SA rights u can start or stop the services of a server. Send the error what u r getting.
August 20, 2010 at 6:22 am
Viewing 15 posts - 16 through 30 (of 33 total)