Forum Replies Created

Viewing 15 posts - 1,951 through 1,965 (of 2,267 total)

  • RE: Full-Text Indexing wonit work

    Have you enabled full-text indexing for the database?

  • RE: T-Sql Top 3rd Position

    try this out,

    select top 3 * from YourTable

    except

    select top 2 * from YourTable

    or you can use ROW_NUMBER()

    ;WITH OrderTable AS

    (SELECT *,

    ROW_NUMBER() OVER (order by id)as RowNumber

    FROM YourTable )

    SELECT *

    FROM...

  • RE: Archiving Data

    Write a procedure to do this, it should be fairly straight foward, do you have a date/time field to work out what the old data is?

    post some more information...

  • RE: CSI -are they for real?

    Its TV.

    It depicts the work of a crime scene investigator about as accurately as Boston Legal does Lawyers.

  • RE: Software/Database Development Hiring Practices

    Jack nailed it on the head here:

    The other thing I have learned is to emphasize accomplishments, not skills on a resume.

    I agree with this , a candidate should be...

  • RE: Choosing the right SQL edition

    Roger Moore (8/22/2008)


    What edition of SQL should i use to do this Standard or Enterprise?

    Again i would say that it depends on your needs and budget, have a look...

  • RE: Choosing the right SQL edition

    You definitely can have 3 databases running on one server, whether this is better thatn running them on seperate servers would depend on a few factors, such as size...

  • RE: finding duplicates... help needed

    you could do this using group by

    SELECT FirstName, LastName, COUNT(SSN) AS SSNCount

    FROM YourTable

    GROUP BY FirstName, LastName

    HAVING ...

  • RE: Need a loop... perhaps

    It is hard to say what the best way to do this without seeing the table and some data,

    post the table def and some sample data and I am sure...

  • RE: Problem Logging in to SQL Server 2000 from .Net 2003 connection string

    Check the SQL server logs to see what the error number is this will give you a clue as to why the login has failed.

    I also would not reccommend using...

  • RE: Delete Duplicate From Flat File (Very Urgent)

    The way i would approach this would be to load all the data into SQL table with duplicates, make sure you include an unique id.

    Then use Select Distinct, or another...

  • RE: Line number in stored proc

    You should be able to double-click on the error message text and it will take you to the offending line.

  • RE: how to select middle row in table

    khushbu.kumar (8/21/2008)


    no ordering

    and i just need to display 4 row.. not the other row

    Without any ID or order it is hard to see why you would need this, but...

  • RE: Duplication of Id's

    You will need to delete the duplicate row before creating the unique constraint.

  • RE: Duplication of Id's

    Check the strored procs and front-end code that you use to insert data for a bug that may be causing this.

    If you are not allowed to have duplicates of IDs...

Viewing 15 posts - 1,951 through 1,965 (of 2,267 total)