Viewing 15 posts - 1,531 through 1,545 (of 1,999 total)
the ordinal position CAN matter. Not everyone writes good SQL or applications and you can often fid yourself with "Select *" or "insert into x select *" in which case...
December 30, 2006 at 2:27 am
using convert(real,0.10) will give you the correct answer, but only because the precision is lower. - you may still get the same problem...
you might try creating this as an inline...
December 26, 2006 at 4:58 am
select convert(float,rate)
however float is an approximation, so beware the type conversion - you may find some = operations do not return the results you would expect.
you should also be aware...
December 26, 2006 at 4:15 am
can you post the structure of AHDPROD.call_req and the indexes that are on it
December 26, 2006 at 4:07 am
yes - something like
sp_configure 'allow updates',1
go
reconfigure with override
go
alter table mytable add column col3 char(1) NULL
go
update syscolumns set colorder=5 where name='col4' and id=object_id('mytable')
update syscolumns set colorder=3 where name='col3' and id=object_id('mytable')
update syscolumns...
December 26, 2006 at 4:04 am
last=
select top 1 * from mytable order by myfield desc
first=
select top 1 * from mytable order by myfield asc
??
December 26, 2006 at 3:58 am
C++ is one of the most efficient object orientated languages microsoft offer, however it's also proboably the most difficult of the languages MS offer, which means that developers have...
December 26, 2006 at 3:57 am
i assume you're looking for someting a little more complicated than
select * from family where id_ancestor_m=123456
you're looking for a complete chain of descendants rather than just the children??
are you...
December 15, 2006 at 2:37 am
do you have an identity on the tables ? if so you can't assume the sql will ignore this column
try the following
rather than
insert into tablex select a,b,c...
December 8, 2006 at 9:02 am
hi colin - wonder which company that was??? sounds like the one we've both contracted at ???
December 5, 2006 at 6:09 am
but why ? setting to simple and then back to full acheives nothing other than forcing you to take another backup to start a new LSN chain.
what does setting to...
December 1, 2006 at 1:46 am
i vote for pre-recorded...
the point of attenting one fo these sessions is to listen to the man making the speech.
the point of visual aids is to assiste the man making...
December 1, 2006 at 1:41 am
what on earth are you doing jdixon?
if you set recovery simple you risk breaking the LSN chain so that reverting back to recovery mode full will be useless
you don't need...
November 30, 2006 at 3:33 am
and to find the log file number do the following
use isalog
go
select * from sysfiles
look for the log file and replace the first number of the above command with teh file...
November 28, 2006 at 9:53 am
Viewing 15 posts - 1,531 through 1,545 (of 1,999 total)