Viewing 15 posts - 1,711 through 1,725 (of 1,825 total)
Hi ,
how do you mean doesn't work ?
Can you post the full query ?
July 13, 2009 at 4:20 am
Use GUID for a key only if you need the key to be globally unique.
The main disadvantage is the size (in terms of bytes) of a guid. ...
July 13, 2009 at 3:46 am
Only heard it once , but it was from a trainer on a vb .net course from one of the largest training companies in the uk.
Dont use stored procedures....
July 11, 2009 at 2:23 pm
hi ,
no solution is particularly clean but this should do you
select table2.id,
coalesce(max(Case when table2.Value = 'V1' then 'Yes' end),'No'),
...
July 10, 2009 at 6:22 am
Other than building it in dynamic sql then no...
July 10, 2009 at 5:15 am
Hi Peso , i pretty much agree with you psuedo-code but your statement of..
as long as the first creation guarantees unique output.
Gets things a little circular 🙂
Maybe when i...
July 10, 2009 at 4:42 am
Hi Peso ,
I think you are being a little unfair..
checksumming the newid value is pretty safe due to the size (in terms of bytes) or the uniqueidentifier type. ...
July 10, 2009 at 2:36 am
Hi ,
Frustrating as it is,you really need to give better details as to exactly what is slow.
Try this link[/url] and then this link[/url], and see if that...
July 10, 2009 at 12:06 am
Sadly its not just limited to SQL. When i started my professional life , software was a science. Now it seem like if you can program a VCR...
July 9, 2009 at 9:09 am
Thanks for the insight guys, its not easy this article writing is it 🙂
July 9, 2009 at 8:58 am
getdate() will return a consistant value within a statement. it doesent matter how long it take for the statement to execute.
edit : See here for more info http://sqlblog.com/blogs/andrew_kelly/archive/2008/03/01/when-a-function-is-indeed-a-constant.aspx
July 9, 2009 at 8:48 am
Hi Ian,
I would of taken in the 'other way' and had a view to union smaller tables( for compatability only until time permitted to do all the joins correctly). ...
July 9, 2009 at 4:05 am
Hi Ian,
I pretty much agree with your logic , im not sure what your question is though ?
July 9, 2009 at 3:19 am
Viewing 15 posts - 1,711 through 1,725 (of 1,825 total)