Re: [Virtuoso-users] Striping in Windows

2012-11-13 Thread Hugh Williams
Hi Paul, Hmmm, I get the same issue with the 6.1.6 windows build when trying to enable striping, although it works with a 6.1.4 build and if I replace the 6.1.6 virtuoso.ini file with the 6.1.4 one the 6.1.6 striping then works. So seems something is corrupt (hidden character, unixtodos issue)

[Virtuoso-users] Striping in Windows

2012-11-13 Thread paul
I’m trying to create stripes in Windows with the latest open source edition of Virtuoso (6.1.6) So I’ve set Striping=1 and also wrote [Striping] Segment1 = 50g, c:\v1\v1.db Segment2 = 50g, d:\v2\v2.db into the virtuoso.ini file; the trouble I have is that the system creates files named “c” and

Re: [Virtuoso-users] Implicit type overrides explicit type on assignment

2012-11-13 Thread Hugh Williams
Hi Quentin, If you create the procedure via isql it does actually warn you about the incompatible assign (unless the type is defined as ANY), thus action should be taken at that point to make them compatible for use down the line: SQL> create procedure Type the rest of statement, end with a sem

Re: [Virtuoso-users] Implicit type overrides explicit type on assignment

2012-11-13 Thread Alexey Zakhlestin
On 13.11.2012, at 9:18, Hugh Williams wrote: > Hi Quentin, > > The error is saying you are trying to concat and integer when a strings is > expected, thus the integer should be cast as varchar for it to work: > > create procedure > DB.q.testBug() returns varchar > { > declare str varchar;