Slashdot Mirror


User: rjpierson

rjpierson's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. CASHMusic on Radiohead Open Sources Music Video · · Score: 2, Interesting

    Check out http://cashmusic.org/ It was founded by Kristin Hersh from the Throwing Muses. It's a pretty good concept for a site where artists can share their work in an open source way.

  2. Re:Corquet License on Croquet Project Releases Initial Developer Release · · Score: 1

    This is the MIT license.

  3. Re:For those wondering why Transact SQL is so simi on Sybase Releases Free Enterprise Database on Linux · · Score: 1

    A few years back I ported the Transact SQL stored procedure code for my company's application from Sybase 11.5 to SQL Server 7. There is some divergence between the launguages so the task was not trivial. The names of some of the built-in variables are different. Our application uses cursors extensively and the variable which checks for the cursor being finished is @@fetch_status in SQL Server and is @@sqlstatus in Sybase. They also return a different set of values so I had to go change all of places where cursors were used. There are also subtle differences in the way that cursors work that caused me to have to rewrite some of this code. There were other small things I had to change that I cannot remember. In short, don't count on your stored procedures from SQL Server to just load up and run in Sybase unless they are very simple.