Viewing 15 posts - 76 through 90 (of 149 total)
Google is your friend: EDI ISA
http://msdn.microsoft.com/en-us/library/bb259967(v=bts.20).aspx
April 15, 2013 at 10:35 am
Jesus, i need my coffee 😉 (Failed)
April 3, 2013 at 1:07 am
ronmoses (3/1/2013)
create proc sp1
as
select * from temp1
exec sp2
Without a BEGIN and END defining the body...
March 1, 2013 at 5:44 am
Hugo Kornelis (1/28/2013)
...
This question would have been so much better if...
January 28, 2013 at 6:37 am
Koen Verbeeck (1/23/2013)
Also, I would think the structure of your website is known, so a relational model is preferred.
Curious to see...
January 24, 2013 at 1:02 am
I'm also wrong, but i learned something. Could someone please explain, why is the identity resetted after a truncate? For me is a possible source of inconsitency.
December 19, 2012 at 2:34 am
I wasn't certain about GROUPING_ID, but BOL cleared it up. 🙂
December 6, 2012 at 3:19 am
demonfox (11/19/2012)
After reading the file table, I fell on varbinary(max) ..need to read it again ..
thanks for the question..
+1
November 20, 2012 at 2:09 am
Something new to learn. But i think it comes very rare to a situation where a coelesce has only untyped null parameters.
November 9, 2012 at 2:42 am
Select (cast(100 as real) * 1.05)*1000000000.0000000000000,(cast(100 as real)*1.049999237060547)*1000000000.0000000,cast(cast(100 as real) * 1.05 as int);
--result: 1,05E+11 , 1,049999E+11, 104
Sorry, but maybe i'm too dumb to understand the logic how SQL Server...
October 25, 2012 at 1:00 am
My problem is, that the first expression evaluates to 105, and if i cast the 105 to int it should remain 105 and not less.
October 24, 2012 at 2:33 am
Lets play a bit:
Select cast(100 as real) * 1.05,cast(cast(100 as real) * 1.05 as int);
-- Result is 105, 104
The result is very strange for me. Does SQL Server the calculation...
October 24, 2012 at 12:59 am
Viewing 15 posts - 76 through 90 (of 149 total)