Forum Replies Created

Viewing 15 posts - 61 through 75 (of 75 total)

  • RE: Log backup taking long.

    Yes once a day.

  • RE: Log backup taking long.

    The job is not failing,but it takes long than normal.instaed of taking less 20min it took 2 hours

  • RE: Log backup taking long.

    I will do so,to my suprise the backup ran normal today.we take log backup everyday which takes less 15 min but yesterday it took more than 2 hours.

  • RE: T Sql - just current Version wanted.

    Thanks,

    The query is working perfect but the problem now is that query must run in SSRS Dataset and when i try to upload the file to report Manager it returns...

  • RE: Two jobs ,One Stored Proc

    Thanks , i will make the jobs not to run at the same time.I am not good to tsql.

  • RE: Two jobs ,One Stored Proc

    Thanks

    So how can i come around the solution.Must i schedule jobs at different times?

  • RE: Two jobs ,One Stored Proc

    This is what the proc does.

    CREATE procedure [dbo].[sp_HostDriveStatusProcess]

    (

    @SiteName nvarchar(100),

    @HostIP nvarchar(15),

    @SystemDrive nvarchar(1),

    @datadrive nvarchar(1),

    @BackupDrive nvarchar(1),

    @BackupDrive2 nvarchar(1)

    )

    as

    begin

    set nocount on

    select

    a.systemname as HostName,

    left(a.deviceid,1) as DriveName,

    cast(cast(a.drivesize as numeric(20,2))/1024/1024/1024 as numeric(13,2)) as TotalSpace,

    cast(cast(a.freespace as...

  • RE: T Sql Query

    Thank you for your help

  • RE: SSRS Expressions

    I am not seeing the corrections bru

    thanks

  • RE: SSRS Expressions

    i dont know what is happening,the code you send me is having an uncommon symbol after Today()),but when i am replying it shows < symbol.

  • RE: SSRS Expressions

    I do not understand the <2,

  • RE: SSRS Expressions

    Thank you so much but please i do not understand the < in the expression.Sorry i am new to Sql.

    =IIf(DateDiff("d",Fields!LastDiffBackupDate.Value, Today())<2,"Green", IIf(IS Nothing(Fields!LastDiffBackupDate.Value),"Transparent","Red"))

    Below are the conditions to be met...

  • RE: SSRS Expressions background color

    Thank you i will try that.So it must be like

    =IIf(DateDiff("d",Fields!LastDiffBackupDate.Value, Today())<=2,"Green", IIf(IS Nothing(Fields!LastDiffBackupDate.Value),"Transparent","Red")).

    Below are the conditions which must be satisfied by the expression

    1.if the column lastdiffbackupdate value is...

  • RE: SSRS Expressions background color

    Thanks Taylor i will try that.

  • RE: Error converting data type nvarchar to numeric.

    Thank you it worked perfect

Viewing 15 posts - 61 through 75 (of 75 total)