Forum Replies Created

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

  • RE: Delete After Trigger

    One more test, Wendell. Can you insert directly into the archive table? No trigger, no proc, just run an insert into arcAddresses with static values in a query window.

  • 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...

  • 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...

  • 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...

  • 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,...

  • 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!"

  • 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.

  • RE: MS Access To Sql Error

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

  • 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

  • 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. 😀

  • RE: CurrentDb looking at old path

    What does the error say?

  • 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...

  • 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...

  • 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...

  • 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:

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