Forum Replies Created

Viewing 15 posts - 5,056 through 5,070 (of 7,187 total)

  • RE: Insight for a Developer in a Rut

    My advice would be not to be put off by the job description. Most recruiters ask for the moon on a stick, but they don't (or shouldn't) expect to...

  • RE: find output using IN clause

    prakash 67108 (9/28/2011)


    he needs only india and iran...why should we go for other countries..?

    ashuthinks (9/28/2011)


    i need to select name and region of the countries in the regions containing 'India', 'Iran'.

    Using...

  • RE: find output using IN clause

    prakash 67108 (9/28/2011)


    yes, Ratheesh is correct...

    may be you select wrong column...

    just use select name,region from bbc where name in ('india', 'iran')

    No, because this doesn't return the other countries in the...

  • RE: find output using IN clause

    First, select the region(s) where name is India or Iran. Then join back to the table to get the other names with the same region(s). If you provide...

  • RE: MS SQL Service Uptime record

    Jpotucek (9/11/2008)


    Also, Is there a way to get 'SQL' uptime? like individual database uptime?

    That is 'SQL' uptime. tempdb is created when, and only when, SQL Server is restarted.

    John

  • RE: find output using IN clause

    ashuthinks (9/28/2011)


    something it wrong

    Care to be more specific?

    Your query will return only rows where region is equal to 'India' or 'Iran'. If you want rows that contain certain...

  • RE: How to sync databases using ssis?

    Yes. Now if you give us some more details, we may be able to help you in doing so.

    John

  • RE: SQL Insert Data from one table to other table

    Please will you show us the DDL for both tables (including constraints), and some sample data.

    Thanks

    John

  • RE: How to format a cell in excel using T-SQL

    Not in SQL, as far as I know. But you could write some VB and embed it in the workbook so that the format is changed whenever the cell...

  • RE: Problem in Distinct Query

    So you only want one row returned for each unique combination of those two columns? How are you going to decide which row that will be when there's more...

  • RE: Index and table maintenance question

    What do you mean maintained but not updated? How do you know the index hasn't been used?

    John

  • RE: UPDATE Check

    Jeff, I agree with you. Although I mentioned Mr Celko's name, in doing so I didn't intend to imply that I was taking his strict "ANSI good, proprietary bad"...

  • RE: CHECK DB

    No, if there is corruption on your live database, that corruption will be copied when you restore on to a different server. Restoring and running DBCC CHECKDB in this...

  • RE: UPDATE Check

    As Jeff hinted, you need to be very careful when you don't have one-to-one relationships between your tables. The UPDATE ... FROM syntax can cause unreported cardinality errors. ...

  • RE: Data Migration to SQL Server

    It's not something I've ever done, I'm afraid. You'll probably need to do some good old-fashioned research... unless anyone else can point you in the right direction.

    John

Viewing 15 posts - 5,056 through 5,070 (of 7,187 total)