Viewing 15 posts - 571 through 585 (of 1,253 total)
there is no row_number () in sql 2000.
October 15, 2008 at 2:13 am
Some points....
i think the idea of population a table with necessary values and then doing the update is correct.
From what i have understood
You either update according to ranges or...
October 14, 2008 at 11:58 pm
Coalesce returns first non-null item from multiple expressions.
ex: - select coalesce(null,null,'a',null) will return 'a'.
Isnull can replaces null with a specified value
ex:- select isnull(null,'a') . Note we can specify only one...
October 14, 2008 at 2:08 am
check out this post..
http://www.sqlservercentral.com/Forums/Topic571247-338-1.aspx
October 13, 2008 at 1:48 am
Yes use the maintenance plan wizard.
October 13, 2008 at 12:32 am
Thanks for the info 🙂
In SQL 2005 we need to look at sys.dm_exec_sessions.
October 10, 2008 at 12:07 am
Hi
Is the combination of RegistrationNo and the datefield a unique combination. I would think so. So you are better off creating a clustered index on both of these fields together,...
October 10, 2008 at 12:02 am
A clustered index on the GPSDATETIME and REGISTRATIONNO seems like the best we can do. Having clustered index increases requires some resources for index maintenance whenver a insert operation/delete operation...
October 9, 2008 at 3:31 am
Hi
Dont you have any indexes on the table. Without proper indexes data retrival queries will be slow. You have to be very sure of the queries that hit the table...
October 9, 2008 at 12:54 am
Another approach:
Keep another table preferrable a temp table that contains the existing id's and the new value for these ids.
Lookup on this table and then run ur update on...
October 7, 2008 at 1:15 am
Hi
From what i have understood from your post and this is the scenario...
lets say id 10 must be 11 and id 11 must be 12
first update id 11 to 12...
October 6, 2008 at 11:15 pm
Can u tell us exactly what issues/errors you are facing?
October 6, 2008 at 11:07 pm
Viewing 15 posts - 571 through 585 (of 1,253 total)