Forum Replies Created

Viewing 15 posts - 21,166 through 21,180 (of 22,184 total)

  • RE: Stored Procedure executing durations are different between executing from application(web) and SQl server management studio - query window

    Check the connection settings for both Management Studio & the App. You may have differences there that are causing the differences in execution time. Stuff like SET IMPLICIT_TRANSACTIONS, SET ANSI_PADDING.

    Do...

  • RE: Stored Procedure vs Parameterized queries

    True, I forgot about that. Thanks.

  • RE: Stored Procedure vs Parameterized queries

    That's one ugly debate you're entering into. Short answer is, parameterized queries function the same way as stored procedures. SQL Server will be able to reuse execution plans because it...

  • RE: TempDB is 13gigs and growing

    You've got someone running transactions, sorts, or creating temporary tables with lots of data. We had users starting an ORDER BY query (no parameters, bad joins, bad search criteria) that,...

  • RE: isnull and performance

    In terms of a join, don't adjust anything. If the column is null, it doesn't equal anything and that row won't be returned which is as it should be.

  • RE: Save Image in database or in web server

    You've already laid out the issues pretty well. You can either save it in the database where:

    [highlight]You get a good, clean, synchronized backup

    When the user is deleted, you also easily...

  • RE: Uploading data for reporting on twice daily

    You could use a view to combine the data from the four tables into a single select statement. 12,000 rows, depending on how much data is in them, is not...

  • RE: Interview Question

    I have to agree with Steve on this one. If you've had a conflict (and who hasn't) and that comes up in an interview, you need to be honest about...

  • RE: how to design table for store document

    this is a pretty regular debate. I usually fall back on business requirements to help decide.

    The one technical issue that does help decide is backups. If you store the...

  • RE: Help with insert trigger.

    Well, there you go. Trigger is the trick then.

  • RE: Help with insert trigger.

    You don't have to use a trigger.

    You could use the OUTPUT clause from the insert statement:

    INSERT INTO TabA (Col1, Col2)

    OUTPUT Inserted.Col1, Inserted.Col2 INTO TabB (Col1,Col2)

    VALUES ('A','B')

  • RE: Generic modeling versus specific.

    Because of the naming conventions (you're right, they're horrible), it's hard to tell exactly what's happening in the "generic" design. However, looking at your design, it sure seems to me...

  • RE: I got a job but .....

    Congratulations.

    Yes, you should learn tons & tons. When you've only yourself to rely on, you start learning things very, very quickly. Remember that automation is your friend. Spending an hour...

  • RE: Generate XML output

    The only time I had to do this I was using an application to take the output from a stored procedure and then save it to a file. I haven't...

  • RE: Member Function Concept.

    Sandy (1/20/2008)


    Hey Grant,

    Thanks for your trying,

    did you get any way to solve this?

    Cheers!

    Sandy.

    I'm sorry, no, becuase, I think like everyone else, I still don't understand what you're trying to accomplish...

Viewing 15 posts - 21,166 through 21,180 (of 22,184 total)