Viewing 7 posts - 31 through 37 (of 37 total)
Your Proliant DL385 should have HP System Tools installed on it. If it doesn’t, go to HP web site and download it. Then run Array Configuration Utility and...
June 29, 2011 at 2:05 pm
With RAID 1, when you have a HD failure, the other HD continues to function as a single drive until the failed drive is replaced. What you need to do...
June 29, 2011 at 1:23 pm
Under database\security\users go to Securables. Add stored procedure you need and grant execute permmision for the user.
May 23, 2011 at 9:53 am
try this one
declare @Start_time datetime
declare @End_TIme datetime
declare @Time varchar (12)
declare @minutes int
declare @seconds int
set @Start_time = '4/29/2011 11:23:44 AM'
set @End_Time = '4/29/2011 1:27:31 PM'
--counting only minutes
set @minutes = datediff(mi, @Start_time,...
May 20, 2011 at 12:10 pm
Try this
CREATE TABLE [dbo].[Test_1](
[String1] [nchar](100) NULL,
[String2] [nchar](100) NULL
) ON [PRIMARY]
insert into dbo.Test_1
select 'P:\SQL Database Backups\Transaction Logs\',
'\AdventureWorks_TransLog_201105021530.trn'
select LEFT(string1, LEN(string1) - 1) + LTRIM(string2)
from Test_1
May 2, 2011 at 4:00 pm
Make sure that you are using domain user account with access to the path specified. Don’t use Local System account.
May 2, 2011 at 3:21 pm
Viewing 7 posts - 31 through 37 (of 37 total)