Viewing 15 posts - 121 through 135 (of 222 total)
try this
select next_run_date,case when next_run_time < 100000 then '0' + cast(next_run_time as varchar) else cast(next_run_time as varchar) end as next_run_time
from msdb..sysjobschedules
November 18, 2008 at 4:29 pm
thanks Bob for mirroring advice.
Let me explain you what i am doing here. For logshipping process, there is a requirement that both machines should have same administrator passwords in...
November 17, 2008 at 5:13 pm
See if you can get more drive space added to that server.
getting more drive space is not possible i have already raised this issue several times and they are...
November 17, 2008 at 3:00 am
Hi Gail
I tried with query you gave me but it didn't work. the error message i get is
Msg 4214, Level 16, State 1, Line 1
BACKUP LOG cannot be performed because...
November 16, 2008 at 11:23 pm
reason is i am trying to use log shipping process which is custom designed. not using SQL server log shipping. there were couple of business decisions which forced to custom...
November 16, 2008 at 8:58 pm
thanks krayknot. while i was waiting for the response i have created the test and it worked for me and your response gave me confidence that it would be right...
November 14, 2008 at 4:35 am
you can run query below for all numbers which are not having decimal.
create table #tmp
(id varchar(10))
insert into #tmp
select '10.10'
union select '1010'
union select '20.20'
union select '2020'
select *, cast(id as float)...
November 13, 2008 at 10:29 pm
i usually run sql server on virtual servers for my development purposes.
will disk fragmentation on physical server help in increasing speed IO for virtual server?
November 13, 2008 at 6:04 pm
Thanks Adrian. That link gave me a little insight of what is database forensics.
Even i was of the same opinion as you said, something related to breaches. But was...
November 7, 2008 at 3:14 pm
Hi All
Thanks for your reply and solutions. Actually i was a big fool before posting this question onto forum, I should have double checked my problem. May be it was...
November 7, 2008 at 3:08 pm
sorry forgot to gave more info. I am using SQL Server 2005 SP2.
Cheers
November 6, 2008 at 11:10 pm
Disparately short of good people, and not-so-good people for that matter. There's a massive shortage of skills in many ares of IT and it's just getting worse.
Thats true. But i...
November 6, 2008 at 5:50 pm
October 30, 2008 at 5:12 pm
Viewing 15 posts - 121 through 135 (of 222 total)