Forum Replies Created

Viewing 15 posts - 1,741 through 1,755 (of 3,232 total)

  • RE: How do I check result from stored procedure in "if not exists"

    Yep, I'm with Brandie here. No function, no cursor, just an INSERT statement. If you could give us more information, we could be of more help. If...

    John Rowan

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

  • RE: How do I check result from stored procedure in "if not exists"

    So your SP returns the values for 1 serial_no at a time and your cursor does an INSERT for each serial_no?

    It does not sound like you need to use a...

    John Rowan

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

  • RE: SQL Hex Character conversion?!

    It looks like a code page problem with your application. I'm not an expert in this so I don't know where to go from here. You may have to...

    John Rowan

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

  • RE: Update with an inner join

    Grant has great advice for you here. That is exactly what I do anytime I am writing anything but a simple UPDATE. Once you are sure that your...

    John Rowan

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

  • RE: SQL Hex Character conversion?!

    What is your DB coalation set to? What about the regional settings for language for Windows on your client's machines?

    Just curious, what happens if you run this code:

    create table...

    John Rowan

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

  • RE: Update with an inner join

    SET NOCOUNT ON

    DECLARE @TableA TABLE (id int, Name varchar(10), Address varchar(20), Number int, Employer varchar(10), account int, Zip varchar(10))

    INSERT INTO @TableA (id, Name, Address, Number, Employer)

    SELECT 1, 'John', 'CA',...

    John Rowan

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

  • RE: Update JOIN Question

    L-Jeff,

    Your question seems to be unrelated to the original poster's topic. You'd be better off starting a new thread if you want help from the community.

    John Rowan

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

  • RE: Help with error messages

    It looks like you are using snapshot transactions. You may get more help with this if you post it in a SQL Server 2005 forum. This forum is...

    John Rowan

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

  • RE: Need Help with SQL Query...

    I'm not trying to be difficult here, but what are you planning on doing with it once you have it in that format? Most people are struggling to get...

    John Rowan

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

  • RE: How to get Weeks in a month

    I'm not sure I fully understand your problem. Can you post DDL for your table and the sample data you would expect to generate the results you've already posted?

    John Rowan

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

  • RE: Update JOIN Question

    Matija,

    Way to go staying professional on this one and backing up your claims with code examples.

    Code talks........BS walks.........

    John Rowan

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

  • RE: SQL Hex Character conversion?!

    I'm not sure I'm following you. Can you mock up an example that shows us what you are seeing? What datatype is your value being stored in ?...

    John Rowan

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

  • RE: Compare two tables: Which fields are different?

    You may want to search SSC for a solution. I know for a fact that this is not the first time your question has been asked in these forums....

    John Rowan

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

  • RE: Finding a Container for the Ticket

    Nags,

    As GS has mentioned, you do not need a cursor or loop to do this. In fact, what you are trying to do does not sound overly difficult....

    John Rowan

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

  • RE: Query Advice

    Be careful with your use of the ISNUMERIC function. It does not always behave like you may expect it to. You may want to consider using PATINDEX instead.

    http://www.sqlservercentral.com/articles/SQL+Puzzles/practicalusesofpatindex/2236/

    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,741 through 1,755 (of 3,232 total)