Forum Replies Created

Viewing 15 posts - 1 through 15 (of 118 total)

  • RE: Could not find stored Procedure error

    It depends how your role has been set-up. It may be that the role has been set up so that each individual stored proc needs to be explicitly permissioned for...

  • RE: Could not find stored Procedure error

    A couple of thoughts off the top of my head: Is the procedure created in the same schema that the db_execute role has access to? Is the procedure schema qualified and...

  • RE: String or binary data would be truncated

    I'd be happy if an error message at least indicated the row number and column before throwing the rattle out of the pram.

  • RE: Find Receipt entry against invoice

    I've updated the code that Lynn kindly provided to produce this. This will group multiple reciepts against an invoice to provide outstanding balances.

    DECLARE @test-2 TABLE

  • RE: Row over partition

    As Phil mentioned, you can use Datepart and Group By to achieve this.

    DECLARE @t table (TimeValues time)
    INSERT INTO @t VALUES
    ('00:20:00'),
    ('01:25:00'),
    ('01:30:00'),
    ('01:45:00'),

  • RE: dbWarden - A Free SQL Server Monitoring Package

    Firstly let me say that this is a great tool!

    However I am getting the following error whenever the jobs try to send an email.

    Executed as user: NT AUTHORITY\NETWORK SERVICE. Warning:...

  • RE: dbWarden - A Free SQL Server Monitoring Package

    Excellent work - many thanks for sharing.

  • RE: Dynamic SQL

    The variable @MyCount is in a different scope to teh dynamic SQL that you have declared.

  • RE: DateTime Precision

    Oops - I got it wrong:blush:

  • RE: Are You Easy To Work With?

    Evil Kraig F (11/22/2011)


    ... As a brief example, I've gotten half of the projects at my current position shot down after explaining why the difficulty of what they're asking...

  • RE: Use of DATETIME and BETWEEN - Part 2

    Revenant (11/18/2011)


    Man... that was not an easy one. Took me almost half an hour to figure it out. THANKS!

    I'm glad that you got so much out of it....

  • RE: Use of DATETIME and BETWEEN - Part 2

    Hi all

    Thanks for the feedback on the question. The results as they stand make for some interesting reading. Only 31% got the answer correct. So this shows that the loss...

  • RE: ssis and ssrs interview questions

    priya.pk20 (10/17/2011)


    plzz tel me, how can i access all these questions

    If you can't work that out, then there's no way you should be on a SQL Server. I can imagine...

  • RE: 30 hours rollback

    Ninja's_RGR'us (10/3/2011)


    Depends on how you guys edited the table in EM.

    Far too often the code defaults to something like this :

    begin tran

    create table2 (new definition)

    insert into table2 SELECT *...

  • RE: 30 hours rollback

    This will severely bloat your your transaction log. Do you have enough space on the disk where your transaction log is located? If not, it could bring your server down.

Viewing 15 posts - 1 through 15 (of 118 total)