Viewing 15 posts - 1,951 through 1,965 (of 2,268 total)
okay sorry,
what account are you running sql under?
Full text search in SQL Server will only work if SQL Server is running in the System account
September 17, 2008 at 10:52 am
Have you enabled full-text indexing for the database?
September 17, 2008 at 10:40 am
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...
September 17, 2008 at 5:22 am
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...
September 16, 2008 at 10:15 am
Its TV.
It depicts the work of a crime scene investigator about as accurately as Boston Legal does Lawyers.
September 16, 2008 at 5:17 am
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...
August 22, 2008 at 10:46 am
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...
August 22, 2008 at 10:06 am
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...
August 22, 2008 at 9:53 am
you could do this using group by
SELECT FirstName, LastName, COUNT(SSN) AS SSNCount
FROM YourTable
GROUP BY FirstName, LastName
HAVING ...
August 22, 2008 at 9:48 am
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...
August 22, 2008 at 8:50 am
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...
August 22, 2008 at 5:42 am
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...
August 21, 2008 at 9:11 am
You should be able to double-click on the error message text and it will take you to the offending line.
August 21, 2008 at 8:19 am
khushbu.kumar (8/21/2008)
no orderingand 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...
August 21, 2008 at 7:38 am
You will need to delete the duplicate row before creating the unique constraint.
August 21, 2008 at 6:27 am
Viewing 15 posts - 1,951 through 1,965 (of 2,268 total)