Forum Replies Created

Viewing 15 posts - 946 through 960 (of 1,033 total)

  • RE: Understanding INNER join in detail

    jim.powers (7/8/2008)


    To understand this, you need to understand the order in which the statement is processed. The FROM clause is processed first. SQL Server (or any RDBMS for that matter)...

  • RE: Understanding INNER join in detail

    orrego.cesar (7/8/2008)


    I have a big question (I guess that is big only for me), but... 'what is the real advantage of INNER JOIN??? why not to use WHERE condition to...

  • RE: Using trace captures

    I don't have that kind of luck...

    Is there a method I can use to have a query recompute the estimated query plan when I'm querying it?

    The reason I ask...

  • RE: Scary Questions

    My path to DBA hood is convoluted.

    I started out providing Net admin/support for a .com in the 90's and continued on that path for a couple years. During that...

  • RE: Scary Questions

    nadiyal (6/25/2008)


    hi,

    being a DBA, a data analyst, a sharepoint developer, VB develop and what ever we are trying to do right now, I have got a question for you:

    how to...

  • RE: Cloning

    Tom Garth (6/25/2008)


    Steven Cameron (6/25/2008)


    How much is SQL Server Developer Edition? $150.00? Something like that. Doesn't have to run on a server either. If they don't have it, then they...

  • RE: Report subscription with Sysdate as default Parameter

    Are you using stored procedures?

    Try something like this if you are

    create procedure showdate

    @inputdate datetime = '01/01/9999'

    as

    if @inputdate = '01/01/9999' set @inputdate = getdate()

    select @inputdate

  • RE: select data and display in different coulumns

    Thanks! 🙂

  • RE: Whats wrong with DISTINCT in this query?

    steveb (6/24/2008)


    but you are selecting a lot of other fields

    What Steve has said there is the sum of it... DISTINCT operates on all of the fields you list, not just...

  • RE: How do I convert an ip address (stored in a column) to a decimal

    Jason Selburg (6/19/2008)


    Or you could take advantage of the fact that an IP address just happens to have four parts just like a fully qualified SQL object name and use...

  • RE: SQL SENDMAIL help

    Also check that the service that is trying to send the file has access to both the folder and file.

  • RE: SQL SENDMAIL help

    Also... remember that the path and file name have to exist on the SQL server... so if you're creating them on your local machine they aren't on the SQL server's...

  • RE: select data and display in different coulumns

    kiran (6/23/2008)


    customer(pk_Customerid,name,address,fk_phonetypeid)

    customerphone(pk_customerphoneid,fk_customerid,fk_phoneid)

    phone(pk_phoneid,fk_phonetypeid,phone)

    phonetype(pk_phonetypeid)

    The structure of these tables isn't exactly the best... either fk_phonetypeid should be in customerphone, or there should be a master customer table. Otherwise you have to operate...

  • RE: Sort Order - Include Null al last

    Iggy (6/22/2008)


    antony (6/22/2008)


    I also picked option 2, only to be told I was wrong, and should have picked option 2!:crying:

    I think you misread the answer. The answer according to the...

  • RE: Which syntax is better and why?

    Jeff Moden (6/13/2008)


    Now, I agree with THAT! That's my favorite format because it puts all of the aliases in the same position horizontally speaking AND it's the same format...

Viewing 15 posts - 946 through 960 (of 1,033 total)