Forum Replies Created

Viewing 15 posts - 12,961 through 12,975 (of 15,381 total)

  • RE: Creating a Trigger

    GP_NC (2/19/2012)


    I do hope the last post gave a clearer picture. If someone can just tell me if using a trigger is the best way to handle this situation....

  • RE: Index Hint Causing Confusing Error

    Can you post ddl including indexes for the tables?

  • RE: Index Hint Causing Confusing Error

    Have you tried removing NOLOCK? You really should remove nolock regardless unless there is a good reason for it. In case you have never read it, here is a great...

  • RE: Query to return from 2 unlike tables with 3rd table linking like info.

    Hi and welcome to SSC! It will help you get better answers if you can post ddl (create table scripts), sample data (insert statements) and desired results based on that...

  • RE: Problem with quoted identifiers

    SQL Guy 1 (2/17/2012)


    I have simple query:

    set quoted_identifier off

    BEGIN tran

    ...

  • RE: Table Structure For 900+ tables

    What exactly are you looking for? Are you trying to get the full ddl of all your tables including indexes, constraints, defaults, triggers, etc??? You should look into some sql...

  • RE: Creating a Trigger

    GP_NC (2/16/2012)


    This would be triggered by an insert into Table1. Then lookup the list to then insert multiple records back into Table1. As I am typing this I...

  • RE: Please help me with this Dynamic Sql Query

    sql.kishore1 (2/16/2012)


    It Did not worked

    What does that mean? Did it not do what you expected? Did it do something else? Did you get an error message? Did your computer blowup?...

  • RE: Creating a Trigger

    Oh I am beginning to now see the real issue. Your data is not normalized and you are trying to figure out to make it work with a poor data...

  • RE: Creating a Trigger

    I think a bit more clarity of the scenario is required. What you have described is an infinite loop.

    ...paraphrased from your description...

    I want to create an insert trigger on table1...

  • RE: Need help with SQL for crystal report

    As Craig said, without tables and sample data this is pretty tough for us to help.

    I tossed this quick example together to show you how you could use a tally...

  • RE: Split String question

    To give you an example of how to use the splitter in that article with your sample data:

    create table #MyTable

    (

    ID int,

    SomeValue varchar(50)

    )

    insert #MyTable

    select 12345, 'kais#2323232#def#323#'

    select ID, Item from #MyTable

    cross apply...

  • RE: CSS Style Sheet Question

    Lowell not sure what you are developing in but make sure you specify the DOCTYPE or border-collapse can have some strange results.

  • RE: MERGE

    L' Eomot Inversé (2/15/2012)


    Hugo Kornelis (2/15/2012)


    Sean Lange (2/15/2012)


    I still don't quite get the point to be honest. It is kind of like saying "you can insert data into this table...

  • RE: MERGE

    Hugo Kornelis (2/15/2012)


    Sean Lange (2/15/2012)


    I still don't quite get the point to be honest. It is kind of like saying "you can insert data into this table but this trigger...

Viewing 15 posts - 12,961 through 12,975 (of 15,381 total)