Forum Replies Created

Viewing 15 posts - 2,491 through 2,505 (of 14,953 total)

  • RE: Need a solution to my scenario

    select *

    from dbo.MyTable

    cross apply dbo.MyUDF(MyTabe.Col1, MyTable.Col2) as MyUDF;

    That's Cross Apply pseudo-code. You'll get better examples if you look up "Cross/Outer Apply" in Bing/Google/whatever. MSDN has articles on the...

  • RE: Data is saved in a different format.

    I would tend to suspect the application code far more than the database. NVarchar is just fine with extended character sets.

    Another possibility is user-input issues. Is your application...

  • RE: Linked servers in SQL 2008

    I would say it depends on what operations you're doing on the data as you retrieve it. Also, what driver you're using for the connection. Quite possibly, you'll...

  • RE: Need a solution to my scenario

    Are you familiar with using the Apply operator (Cross Apply and Outer Apply)?

    With that, you can "join" a function to a table and pass in the values from the table...

  • RE: How to get data from multiple tables?

    Are you asking about Join statements in the From clause? You can include way more than 10, without nested queries.

    This sounds like a homework/test question. Is it?

  • RE: Are the posted questions getting worse?

    Jeff Moden (12/26/2011)


    The Question: (well, sort of :-))

    ... do any of you see or have a problem with me writing and publishing an article on how to rapidly build test...

  • RE: variables

    justforgroups2004 (12/22/2011)


    Thank you for reply, GSquared! 🙂

    I have two servers 7 and 2005. Never worked with SSIS, but just looked it up, and it appears to be a part...

  • RE: Pay Ranges

    Dev (12/23/2011)


    In my case I also have 2 post-graduate degrees, one of which pertains managing a business and understanding these types of things. Like a techy MBA :)...

  • RE: Index created date

    Sapen (12/22/2011)


    Thanks for the script. I am thinking that the index was created around november 8th,2011. And they were atleast 2 sqlserver service restarts from then and also the server...

  • RE: Complex Join (?) problem

    stourault (12/22/2011)


    Thank you guys for the quick response and the ideas here are similar to what I've been testing out but one of the problems I have is that the...

  • RE: Complex Join (?) problem

    Lutz, that won't get anything that's in both places (if that's possible), nor will it get anything that's in Bins but not in Lots (if that's possible). At very...

  • RE: Lost Transaction?

    A trace might be easier on your server than a trigger, and will capture the same kind of information.

    A non-replicated transaction is a non-replicated transaction, whether it's an insert (missing...

  • RE: Complex Join (?) problem

    Does this essentially get you what you need?

    ;

    WITH LB

    AS (SELECT PartCode,

    ...

  • RE: Pay Ranges

    David Moutray (12/22/2011)


    GSquared (12/22/2011)


    And I dropped out of both kindergarden and college! But I've got a well-paid DBA job anyway.

    Heh. I'm glad I'm not the only one! ;-)...

  • RE: Learn T-sql Help please!!!

    I started with a book, SQL Server Bible, way back when. That worked for me.

Viewing 15 posts - 2,491 through 2,505 (of 14,953 total)