Forum Replies Created

Viewing 15 posts - 1,831 through 1,845 (of 3,232 total)

  • RE: architectural advice

    Here's a decent read on scaling out your application:

    http://msdn2.microsoft.com/en-us/library/aa479364.aspx

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Fullname split

    So you've already given it a shot with SUBSTRING? Why don't you post what you tried so we can have a look.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How do you define "reasonable" performance?

    I would say that CPU usage of 95% and connections timing out is not reasonable!! It sounds like you are sharing your development box with multiple development groups? ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Selecting data in a grid?

    Thanks for posting your final solution. It helps those who may come accross this thread months from now see what ended up working for you.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: IF Statement with in a SELECT statement

    Thanks for following up with the end solution Diann! Also, now that you have the UNION, you no longer need to include the CASE statement for your Types. ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: IF Statement with in a SELECT statement

    Shamsudheen,

    I think this was a case where we were not privy to the full scope of the problem domain that Diann was trying to solve. The solution that...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Selecting data in a grid?

    Check out the PIVOT statement in Books Online.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Update or Insert from one table to another

    The tables in question have around 100 columns and 900 or so rows. It looks like your query would require writing a line for every column and every row...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Update or Insert from one table to another

    From the looks of your code, you are trying to do this procedurally, maybe even with a cursor...correct?? This whole operation can be done with 2 set based queries....

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: PK / FK design question

    Wow, that was great Jeff...thanks. I'll have to admit, I've been just watching this thread waiting for a solid explanation of the benefits of any of the solutions provided....

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: help casting

    I wouldn't quite call it casting. This may help:

    DECLARE @Table TABLE (RowID int, RowValue varchar(10))

    INSERT INTO @Table

    SELECT 1, 'Mister' UNION ALL

    SELECT 2, 'Senior'

    SELECT REPLACE(RowValue,'Mister','Mr') FROM @Table

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Error executing job

    It looks like a permissions issue. Make sure that the Peru8\SYSTEM account has permissions to do everything the package needs to do. When you ran the package outside...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Blocking issue.

    You can run SQLDiag.exe to give you detailed locking/blocking/process info.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Joining Union Queries

    Ah, I did not see that your tables are not on the same server. Yes, you'll need linked servers and you'll need to watch performance.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Inserting From 1 table into 2 tables - Retaining Relationship Between Data

    What?? In his example, the relationship persists because the RowID is maintained between the two. With the example shown, you can re-link the Names and Addresses by running...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 1,831 through 1,845 (of 3,232 total)