Forum Replies Created

Viewing 15 posts - 181 through 195 (of 345 total)

  • RE: MS Access To Sql Error

    The converstion may have made qry_Reports and qry_PI_Reports into tables. Check that. Also check that qry_Reports and qry_PI_Reports were converted at all.

    Run this in a SSMS query window:

    select * from...

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Delete After Trigger

    GilaMonster (7/6/2011)


    There are no other triggers on either table? Absolutely sure of that?

    Exactly. There has to be an INSTEAD OF INSERT trigger on the archive table. Lowell and I have...

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Delete After Trigger

    The RAISERROR doesn't rollback the transaction, you would need an explicit ROLLBACK TRANSACTION after that statement.

    Wendel, your trigger is fine, but I'm thinking other triggers may be interferring. Disable all...

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Question on SQL Server script

    If the period columns are nullable and dont get filled in until the current month, then this will get the last filled in month:

    insert into tableB ...

    select coalesce(period12, period11, period10,...period2,...

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: user requests

    Good luck on prioritizing 100 million users. You may have to stay late 😀

    Like my dad used to tell me, "Todd, I told you a million times not to exaggerate!"

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: error while connecting to the server

    Not really a SQL Server related question. Google those errors related to your code environment (VB, C#, etc.) There are tons of forums that address these types of errors.

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: MS Access To Sql Error

    Post the queries that could not be converted. Maybe we can figure out why from the syntax.

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: how to implement a Multirow insert trigger?

    Note that your trigger is insert only. If you want to capture edits, change it to FOR INSERT, UPDATE

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Update Query

    CELKO (6/29/2011)


    Do you often update things at random? Does your boss know?

    I don't care who ya are, that's funny right there. 😀

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: CurrentDb looking at old path

    What does the error say?

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Help! Migrated from Access to SQL Server 2005 - Can't see newly inserted records

    You post is very confusing. Let's start simple.

    When I run my 'Insert' statements I can not see the record in the table using SQL Express Management Studio.

    Exactly how are you...

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Code Ownership - DBA vs. Developer

    george sibbald (6/27/2011)


    toddasd (6/27/2011)


    george sibbald (6/27/2011)


    ...

    I think you have to accept that in most shops devs will own the code but not the environment (and certainly not production). The DBA...

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Code Ownership - DBA vs. Developer

    george sibbald (6/27/2011)


    ...

    I think you have to accept that in most shops devs will own the code but not the environment (and certainly not production). The DBA is needed to...

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Help with another developer's T-Sql asp.net code

    Your procedure doesn't have any INSERTs, so I can't see how anything is being populated. :Whistling: Which table is table 1? :unsure:

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

  • RE: Search for Ambiguous Column Names after upgrade to SQL2008

    Bingo. Compatability was 80.

    ______________________________________________________________________________
    How I want a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.

Viewing 15 posts - 181 through 195 (of 345 total)