Forum Replies Created

Viewing 15 posts - 12,001 through 12,015 (of 15,379 total)

  • RE: Are the posted questions getting worse?

    Sometime in the somewhat recent past somebody shared a story about a company that went belly up due to their triggers not supporting multiple rows. I brought this up in...

  • RE: Updating multiple values from 1 table to another

    dwain.c (5/10/2012)


    Sean Lange (5/10/2012)

    There was a story in another thread a few months ago by one of the regulars about a company that went belly up because their triggers couldn't...

  • RE: Updating multiple values from 1 table to another

    dwain.c (5/11/2012)


    vinu512 (5/11/2012)

    You've nailed it Dwain. All this time I was thinking that I have done this before but wasn't able to remember how I did it. I tried everything...

  • RE: sum, percent do able ?

    sabercats (5/10/2012)


    This one i made up per your team request. I did not test with sandbox ?

    CREATE TABLE #Testing

    (

    Location varchar(255),

    OS varchar(255),

    Starttime DATETIME,

    Endtime DATETIME

    )

    INSERT INTO #Testing

    (Location, Starttime, Endtime)

    SELECT 'tampa','win7','2012-05-01 12:56:27.000','2012-05-01...

  • RE: sum, percent do able ?

    Here is the sample ddl all cleaned up and ready to roll.

    CREATE TABLE #Testing

    (

    Location varchar(255),

    OS varchar(255),

    Starttime DATETIME,

    Endtime DATETIME

    )

    INSERT INTO #Testing (Location, OS, Starttime, Endtime)

    SELECT 'tampa','win7','2012-05-01 12:56:27.000','2012-05-01 13:39:22.170' UNION ALL

    SELECT 'tampa','win7','2012-05-01...

  • RE: sum, percent do able ?

    Actually Lynn that part is fairly easy to correct. The real problem is the OP wants help with the original query and did not provide any details about the original...

  • RE: Passing Parameter with a wildcard

    themangoagent (5/10/2012)


    I didn't think you were trying to irritate me, Sean. To be faire, I did initially include most of the details you requested. I know that it's not easy...

  • RE: Passing Parameter with a wildcard

    themangoagent (5/10/2012)


    Sean Lange (5/10/2012)


    Things like what does the table look like?

    Like I said, it's de-normalized. It has fields like ID, Value1, Value2, Value3...Value12, where Value should be in its...

  • RE: Passing Parameter with a wildcard

    Well it is tough to help with performance problems without some details. Things like what does the table look like? What is the desired output? What does the query you...

  • RE: Passing Parameter with a wildcard

    Hi and welcome to SSC. In order to help you need to provide some information. Please see the first link in my signature for best practices when asking questions.

  • RE: SQL Injection Vulnerability Question

    Eugene Elutin (5/10/2012)


    Perry Whittle (5/10/2012)


    hisakimatama (5/10/2012)


    The application is certainly a Windows-based application, then.

    so it's not exposed to the "outside world" then.

    Sure, and there is no way to...

  • RE: Are the posted questions getting worse?

    WayneS (5/10/2012)


    Hey Threadizens,

    Regarding today's (10 May 2012) QOTD: several folks have stated that it could have been worded better. My question to you is how would you have worded it...

  • RE: Please i need HELP !

    Your best bet is probably to hire a local consultant to come help you. There are so many things that COULD be the problem. This is likely way beyond the...

  • RE: how to write sp insert query for this table with out identity storing many data at a time with comma seperated value?

    Your question is not very clear. I can however suggest a much fast string splitting function than the xml based version you posted. Take a look at the string splitter...

  • RE: Question about using a cursor or sql in application

    Hands down your best approach is to get rid of the cursors all together. Then you don't have to worry as much about performance issues like you are having. Are...

Viewing 15 posts - 12,001 through 12,015 (of 15,379 total)