Forum Replies Created

Viewing 15 posts - 616 through 630 (of 790 total)

  • RE: unknown character

    Another point for experience to work with these problems!

  • RE: Convert Start and End Dates to Time records

    hmm are you sure that every day has 7 hour or it is different with any other day!?

  • RE: Index ID

    ...or if you want to know this information usually, you can use this procedure:

    Creating the Procedure:

    CREATE PROCEDURE USP_FIND_INDEX_ID

    @TABLE_NAME VARCHAR(200)

    AS

    SELECT O.NAME, I.OBJECT_ID, I.NAME, I.INDEX_ID, I.TYPE_DESC

    FROM sys.objects O INNER JOIN sys.indexes I...

  • RE: Index ID

    For fast information try this:

    SELECT OBJECT_ID, NAME, INDEX_ID, TYPE_DESC FROM sys.indexes

    WHERE NAME= 'yor_index_name'

    Hope it helps you!

    :hehe:

  • RE: Date range to also compute previous date per no. of days

    Jeff Moden (10/4/2008)


    ...If you want a really good answer, read and heed the article found at the link in my signature below.

    quote]

    Yes Jeff your link in your sig really no...

  • RE: Date range to also compute previous date per no. of days

    Hmm can you put more info here about your problem ...I'm sure if you post the table structure and some sample data we will find the solution for you ...be...

  • RE: migration oracle data to sql server

    Can anyone tell me this SSMA can help me to migrate from Oracle 8i to SQL Server 2005 ...!?

  • RE: 'N' number of usage - Tally Table

    As I understand you are listing the things what can you do with Tally Table!?

    In my experience I used Tally table to find out the missing numbers in my...

  • RE: Using row_number()

    I agree with Jacob Sebastian!

    Structure of the table and sample data ( not original data )!

    😎

  • RE: Using row_number()

    OK! Now parsing without errors!

    Philip Horan:

    What about the results?

  • RE: Using row_number()

    Hmmm I don't think so that the PARTITION BY will work without ORDER BY ...!?

  • RE: Using row_number()

    Philip Horan (10/2/2008)


    Jacob that is perfect, what did you change?

    Finally was my approach valid in constructing a query to use in a report?

    Many Thanks,

    Phil.

    Eeeeh, the responses coming up from SQL...

  • RE: dupliate records

    Daryl Smith (10/1/2008)


    if exists(SELECT material_code

    FROM MATERIAL_UPDATES

    GROUP BY material_code

    HAVING count(*) > 1)

    BEGIN

    select "Table has Duplicates"

    RETURN

    END

    else

    select "No Duplicates"

    -- your query here

    little nice stuff here...

  • RE: IF condition

    Interesting stuff here... :hehe:

  • RE: Export database into Excel

    Junior_DBA (10/2/2008)


    Thank you.. I am going to proceed installing Excel 2007 and test it the way you said...

    I hope it works...thanks.

    Sure it works in this way I'm exporting the data...

Viewing 15 posts - 616 through 630 (of 790 total)