Viewing 15 posts - 121 through 135 (of 156 total)
same here...:-)
CirquedeSQLeil (3/16/2010)
I learned something today. I am still left wondering how to do it? The documentation is very light on the subject.
March 17, 2010 at 4:51 am
Oleg Netchaev (3/16/2010)
sjimmo (3/16/2010)
March 17, 2010 at 2:50 am
probably some kind of rollback should have been in place.. 🙂
CirquedeSQLeil (3/16/2010)
Great question. Would have been better if I had not missed my click.:-D
March 17, 2010 at 2:42 am
sorry for sounding stupid, but has anybody implemented sparse in his/her code ?
what was the reasoning behind.. is it really worth ?
March 5, 2010 at 3:50 am
if the query contains a top 3
SELECT top 3 c.*, Users.* FROM reptec_changedim c, Users
then this will return 3 records...
March 3, 2010 at 1:32 am
i fail to understand what is the learning in this question. anybody plz. suggest...
March 3, 2010 at 1:29 am
thanks for the question.... was really not aware of datalength function..
March 2, 2010 at 1:26 am
UTC is the best option, we have people accessing our application from all time-zones. all updates are done in utc format.
the only thing people in different time zones need to...
February 26, 2010 at 3:40 am
apologies... i should have included table structure and some sample data...
declare @wareshousetable table
(
col1 [varchar](64) NULL,
datesection [char](16) NULL,
totalvalue [numeric](10, 0) NULL,
usedvalue [numeric](10, 0) NULL,
smalldatesection char(7) NULL
)
insert into @wareshousetable (col1,datesection,totalvalue,usedvalue)
select 'server1','220003722000',100,25...
February 21, 2010 at 10:34 pm
That is, isnumeric doesn't guarantee that the conversion will work, just that its likely to
Float is not the only numeric data type 🙂 The conversion to money works fine.
conversion to...
February 21, 2010 at 9:49 pm
thanks...
i just checked it out.. without indexes, update query takes 30 sec.
with the indexes in places, it takes 2 min !
RBarryYoung (2/17/2010)
February 19, 2010 at 2:06 am
thanks, a very good question ! got to learn something new today.:-)
February 15, 2010 at 11:35 pm
Viewing 15 posts - 121 through 135 (of 156 total)