Viewing 15 posts - 106 through 120 (of 127 total)
You might be right. Here is what I pulled from the HELP from SSMS for "Datetime data type >> about datetime data type":
" ... Values with the datetime data...
March 22, 2008 at 6:45 am
Are datetime datatype stored as floats or is more like date is one integer (the number of days from 1/1/1900) and the time another integer (the number of 1/300th second...
March 21, 2008 at 6:36 pm
'' will auto convert to numeric 0 which will autoconvert to the "zero date" which is 1/1/1900. I am pretty sure that it was this way back in the...
March 21, 2008 at 5:23 pm
Another potential idea is something like:
declare @test-2 table(tString varchar(12))
insert into @test-2
select null union all
select '' union all
select '$1,234' union all
select '1111D1' union all
select '11E2' union...
March 21, 2008 at 11:19 am
I think you are right; with Oracle I got:
select *
from
( select 0 as field1 from dual union all
select 1 as field2 from dual
)
where field1 = '';
/* -------- Output...
March 21, 2008 at 8:41 am
That is more-or-less the expected behavior. Keep in mind that '' can be auto converted to zero. For example:
declare @test-2 table(field1 int)
insert into @test-2...
March 21, 2008 at 6:23 am
Just make sure you have an index that has customer Name first and insert using a WHERE NOT EXISTS clause on customer name -- should be very fast.
Edit:
Something else you...
March 19, 2008 at 5:56 am
7000 is not a large number; it seems to me that it might be more appropriate to have your select list just fetch the distinct records rather than take the...
March 18, 2008 at 7:28 am
A float datatype is not a precise datatype; give a look at this datatype in books online. If precise decimal positions are needed you might want to consider either...
March 14, 2008 at 8:35 am
Assuming that you might have more than one "PageFlow ID" it might be translated into relational division with something such as:
select
sessionId,
id
from
( select
sessionId,
...
March 13, 2008 at 8:56 am
The default setting for QUOTED_IDENTIFIER is to ON. This provides the ability to enclose column and table identifiers in double quote marks to define an identifier. The biggest...
March 13, 2008 at 7:42 am
I have seldom used application roles because (1) they have to be activated on an ad-hoc basis and therefore cannot be set from stored procedures and (2) automatically setting the...
March 13, 2008 at 7:24 am
After re-reading the exchange I think my question was wrong because I was focusing on the wrong part of the question. The orignal question, "... Is it possible for...
March 11, 2008 at 6:12 am
OK, Jeff, but that was not what I was asking.
March 11, 2008 at 5:47 am
Jeff:
What are the circumstances for that? When I run the following query it get the commented results:
use tempdb
go
select name as before from sysobjects where type = 'U'
exec ( 'create...
March 10, 2008 at 6:24 am
Viewing 15 posts - 106 through 120 (of 127 total)
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy