Viewing 15 posts - 661 through 675 (of 816 total)
ok, and this is the only code you have behind that perticular functionality or some other set of code as well?
Not able to find any specific problem with this set...
September 6, 2010 at 7:39 am
if its not sql compressed backup or litespeed compressed backup, then for estimate, it should be nearly equaly to mdf file size of database.
September 6, 2010 at 7:30 am
ok, next try then
dateassayrequested = DATEADD(dd, DATEDIFF(d,0,@dateassayrequested), 0))
[/code]
is this perticualr code working ok?
because when I replaced your variable with current date, then I am getting as below result :-
getdate()...
September 6, 2010 at 7:13 am
ohhok, so you have the database but it was never backed up because of thinking on the estimate size it will take? 😀 😀 😀
September 6, 2010 at 7:09 am
i mean something like :-
@assayid int,
@dateassayrequested datetime
AS
if @assayid <>0 set @assayid = 0
and then your select statement
September 6, 2010 at 6:56 am
have you configured the correct operator in notification tab of sql job?
September 6, 2010 at 6:46 am
i think it could be because of :-
(@assayID = 0 OR assayid = @assayid).
can you set the @assayid = 0 on top and then @assayid = whatever passed.
In this way...
September 6, 2010 at 6:44 am
like the level suggest(L1), it will be for some jr DBA role where the person have the basic idea on sql server as well must be aware of new versions...
September 6, 2010 at 6:40 am
if you run below query on the serevr where u have the distributor database, you will come to know the errors its generating.
use distribution
go
select * from MSrepl_errors order by time...
September 6, 2010 at 6:38 am
try this :-
SELECT s.database_name,
m.physical_device_name,
cast(s.backup_size/1000000 as varchar(14))+' '+'MB' as bkSize,
CAST (DATEDIFF(second,s.backup_start_date , s.backup_finish_date)AS VARCHAR(4))+' '+'Seconds' TimeTaken,
s.backup_start_date,
CASE s.[type]
WHEN 'D' THEN 'Full'
WHEN 'I' THEN 'Differential'
WHEN 'L' THEN 'Transaction...
September 6, 2010 at 6:26 am
seems like the problem with replication? What kind of replication you have configured?
Also are you able to get any more detail in ms_replcommands in distributor database?
August 28, 2010 at 12:57 pm
maintenace task is windws task or sql task?
if windows check application log.
if sql then check if any DTS is configured for that. And check DTS history.
Which version of sql...
August 27, 2010 at 8:18 am
expand job and check individual step within job
August 27, 2010 at 7:40 am
when you saying 1000 server, you mean sql server or windows server.
both are different tasks and need different profile people. its upto which profile you interested in
August 27, 2010 at 7:29 am
even I use the spotlight and its quiet handy for digging into the problem. But sometime it takes ages to respond. Hope new version 7.0 have improved in responding.
Also Performance...
August 27, 2010 at 7:06 am
Viewing 15 posts - 661 through 675 (of 816 total)