Forum Replies Created

Viewing 15 posts - 1,816 through 1,830 (of 2,356 total)

  • RE: xp_delete_file does not remove older backup files

    I'm with Jeff.

    There some sort of secret that makes this work, or keeps it from working.

    I took your code, and try to run it in every way...

  • RE: DBA Service

    Monitoring is kind of standard for most companies that provide this type of service. What would be good to focus on is the specifics of what they are monitoring,...

  • RE: DBA Service

    http://www.rdx.com/

    Take a look at these folks

  • RE: The New Men of IT

    TomThomson (3/23/2016)


    David.Poole (3/21/2016)


    I'm extremely wary of LinkedIn endorsements. I've been endorsed by people I've never heard of for skills I didn't know I had.

    Me too. I have endorsements...

  • RE: SSRS Fails at Linking Record together

    rcooper 78099 (3/23/2016)


    I have an SSRS report that runs with out error. However

    It has a parametier called "FundId" which is not linking to the

    rest of the report it displays it...

  • RE: Error Assitance

    rcooper 78099 (3/23/2016)


    Update- I got the error fixed. Not entirely sure what it was. However I can tell you the @StartD and @EndD are correct. It is my mistake for...

  • RE: The New Men of IT

    True story.

    We were desperate to do some hiring. We received hundreds of resumes. 8 of us were sitting around the conference table passing the resumes in...

  • RE: Error Assitance

    Also, this code will probably not do what you think it it should be doing.

    Where

    pc.accountnbr Not In ('Null', '') And

    pc.checknbr Not In ('Null', '') And

    ...

  • RE: Error Assitance

    rcooper 78099 (3/22/2016)


    Msg 156, Level 15, State 1, Line 15

    Incorrect syntax near the keyword 'join'.

    Michael L John (3/22/2016)


    Select

    pc.accountnbr 'account number',

    qf.description 'Fund Name',

    pc.checknbr 'Check Number',

    p.fullname 'Pay Provider',

    ...

  • RE: Error Assitance

    Select

    pc.accountnbr 'account number',

    qf.description 'Fund Name',

    pc.checknbr 'Check Number',

    p.fullname 'Pay Provider',

    pc.amountpaid 'Amount Paid',

    replace (pc.paydiscount,'-',''),

    pc.advanceapplied 'Advance',

    pc.checkamt 'Check AMT',

    pc.checkprintdate As StartD,

    pc.checkprintdate As EndD

    from

    paycheck...

  • RE: Passing variable to @query variable in sp_send_dbmail stored procedure

    Declare @var varchar(3)

    SET @var = '22'

    SET @QRY ='exec dbo.sp_policeTest' + @var

    Don't you need space after the sp_policeTest"

    SET @QRY ='exec dbo.sp_policeTest' + @var

    @Qry is "EXEC dbo.sp_policeTest22"

    SET @QRY ='exec dbo.sp_policeTest ' +...

  • RE: The Slack Integration

    Currently we have Skype for Business, Slack, Yammer, and email. Not to mention the ticket tracking system.

    it certainly can, and does significantly at times, detract from productivity....

  • RE: Problem in accessing a table in Tempdb

    Is this failing through SSMS or an application?

    It sounds as if the credentials being used to run the the application have been denied access to this schema.

    Try...

  • RE: Problem in accessing a table in Tempdb

    It's probably not a good idea to create a permanent table in tempdb. This table will not be there the next time the server re-boots.

    If you are creating...

  • RE: Moving available space from one drive to another on same server

    Do you want to move space on a volume, or do you want to move the database from one drive to another?

    If you want to move space on a volume,...

Viewing 15 posts - 1,816 through 1,830 (of 2,356 total)