Viewing 15 posts - 1,111 through 1,125 (of 2,268 total)
try using ISNUMERIC in the order by
SELECT * FROM yourTable
ORDER BY ISNUMERIC(yourCol), yourCol
January 15, 2010 at 6:23 am
the performance will probaly be the same unless you are using an index view
It is fairly easy to test
January 15, 2010 at 6:18 am
You don't need to buy Visual Studio 2008 to get SQL Server 2008 developer, you can buy SQL 2008 developer as a stand alone prodcut for about £30
January 14, 2010 at 6:01 am
Stay away from the EAV especially if your table is going to be heavily searched.
http://www.simple-talk.com/sql/t-sql-programming/avoiding-the-eav-of-destruction/
January 13, 2010 at 3:44 am
Lowell (1/11/2010)
January 11, 2010 at 11:00 am
The first step would be to check the sql server error log this will have an entry for the Failed login and the error code. From this you can...
January 11, 2010 at 10:53 am
Is data being written and modified on both servers?
If so, you could use SSIS to sync the data and set this is a job to run frequently, however you...
January 7, 2010 at 9:49 am
to get the file location of the full text catalog
SELECT * FROM sys.fulltext_catalogs
January 7, 2010 at 4:14 am
Why are you then declaring @Contracts as a unicode text data type?
if thre are only integers then you wont need to use unicode so it would be better to use...
January 7, 2010 at 2:58 am
It is hard to tell without seeing some sample data,
however what data type is GCI_PM_FileSubTypeXContract.ContractID ?
January 6, 2010 at 10:59 am
Is this a straight import or do you have any data transformations?
January 6, 2010 at 10:52 am
The error message that is returned when you try to Truncate the table will have the name of the constraint that is the problem.
You may have to drop most if...
January 6, 2010 at 10:50 am
pankaj.baluni (1/5/2010)
January 5, 2010 at 8:26 am
Those steps 'should not' corrupt the database.
Can you post the output from running CHECKDB ?
January 4, 2010 at 8:52 am
this book has some excellent information about the Optimizer
http://www.amazon.com/Microsoft-SQL-Server-2008-Internals/dp/0735626243/ref=pd_sim_b_2
infact the entire
Inside Microsoft SQL Server series is excellent in helping understand the internals of SQL server.
January 4, 2010 at 8:25 am
Viewing 15 posts - 1,111 through 1,125 (of 2,268 total)