Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
10answers
24k views

Hibernate JPA Sequence (non-Id)

Is it possible to use a DB sequence for some column that is not the identifier/is not part of a composite identifier? I'm using hibernate as jpa provider, and I have a table that has some columns ...
17
votes
3answers
2k views

Clojure: seq (cons) vs. list (conj)

I know that cons returns a seq and conj returns a collection. I also know that conj "adds" the item to the optimal end of the collection, and cons always "adds" the item to the front. This example ...
16
votes
6answers
485 views

Find min. “join” operations for sequence

Let's say, we have a list/an array of positive integers x1, x2, ... , xn. We can do a join operation on this sequence, that means that we can replace two elements that are next to each other with one ...
12
votes
6answers
864 views

Find three numbers appeared only once

In a sequence of length n, where n=2k+3, that is there are k unique numbers appeared twice and three numbers appeared only once. The question is: how to find the three unique numbers that appeared ...
11
votes
4answers
691 views

What algorithm to use to segment a sequence of numbers into n subsets, to minimize the standard deviation of the sum of the numbers in each subset

I'm looking for an algorithm to segment a sequence of positive numbers into n subsequences, such that the standard deviation of the sum of the numbers in each subset is minimized. The ordering of the ...
11
votes
7answers
11k views

Oracle sequence but then in MS SQL Server

In Oracle there is a mechanism to generate sequence numbers e.g.; CREATE SEQUENCE supplier_seq MINVALUE 1 MAXVALUE 999999999999999999999999999 START WITH 1 INCREMENT BY 1 CACHE ...
10
votes
5answers
529 views

common lisp cons creates a list from two symbols, clojure cons requires a seq to cons onto?

(Disclaimer - I'm aware of the significance of Seqs in Clojure) In common lisp the cons function can be used to combine two symbols into a list: (def s 'x) (def l 'y) (cons s l) In clojure - you ...
9
votes
7answers
462 views

Idomatic way to iterate through all pairs of a collection in Clojure

Given a collection I want to iterate through all pairs in a collection. Example (all-pairs seq) (all-pairs '(a b c d)) => ([a b] [a c] [a d] [b c] [b d] [c d])) Here is my idea (defn all-pairs ...
9
votes
6answers
3k views

UUID performance in MySQL?

We're considering using UUID values as primary keys for our MySQL database. The data being inserted is generated from dozens, hundreds, or even thousands of remote computers and being inserted at a ...
9
votes
2answers
716 views

Is there a practical way of migrating from identity columns to hilo keys?

I work with a database that depends heavily on identity columns. However as we have now moved all applications over to NHibernate I wanted to look into using HiLo as seems to be recommended with ...
8
votes
3answers
762 views

How to compute multiple sequence alignment for text strings

I'm writing a program which has to compute a multiple sequence alignment of a set of strings. I was thinking of doing this in Python, but I could use an external piece of software or another language ...
8
votes
3answers
124 views

Algorithm for re-arranging a sequence of weights

I have a number of items in an array, each one associated to a certain weight. There is a business rule saying that no two adjacent items cannot have a total weight of more than a certain value, let's ...
8
votes
2answers
416 views

What is the correct term for the following functional programming pattern?

I've heard it referred to as a stream, as an infinite list, and sometimes even as a lazy sequence. What is the correct term for the following pattern? (Clojure code shown) (def first$ first) (defn ...
8
votes
1answer
190 views

Concise Lisp code to apply a list of functions all to the same argument(s) and get a list of the return values?

Suppose I have a single element, and I have a list of predicates (functions). I want to apply each of these predicates to the single element and get a corresponding list of return values. I know that ...
8
votes
2answers
478 views

Python splitting list based on missing numbers in a sequence

I am looking for the most pythonic way of splitting a list of numbers into smaller lists based on a number missing in the sequence. For example, if the initial list was: seq1 = [1, 2, 3, 4, 6, 7, 8, ...
8
votes
9answers
1k views

Algorithm to find the next number in a sequence

Ever since I started programming this has been something I have been curious about. But seems too complicated for me to even attempt. I'd love to see a solution. 1, 2, 3, 4, 5 // returns 6 (n + ...
7
votes
4answers
389 views

List of options: equivalent of sequence in Scala?

What is the equivalent of Haskell's sequence in Scala? I want to turn list of options into an option of list. It should come out as None if any of the options is None. List(Some(1), None, ...
7
votes
6answers
205 views

n-largest elements in an sequence (need to retain duplicates)

I need to find the n largest elements in a list of tuples. Here is an example for top 3 elements. # I have a list of tuples of the form (category-1, category-2, value) # For each category-1, ...
7
votes
1answer
140 views

How to append or prepend on a Scala mutable.Seq

There's something I don't understand about Scala's collection.mutable.Seq. It describes the interface for all mutable sequences, yet I don't see methods to append or prepend elements without creating ...
7
votes
4answers
442 views

Clojure: Semi-Flattening a nested Sequence

I have a list with embeded lists of vectors which looks like: (([1 2]) ([3 4] [5 6]) ([7 8])) Which I know is unideal to worth with. I'd like to flatten this to be ([1 2] [3 4] [5 6] [7 8]). ...
7
votes
3answers
570 views

Detecting rare incidents from multivariate time series intervals

Given a time series of sensor state intervals, how do I implement a classifier which learns from supervised training data to detect an incident based on a sequence of state intervals? To simplify the ...
7
votes
5answers
4k views

Is there something like “if not exist create sequence …” in Oracle SQL?

For my application that uses an Oracle 8 DB, I am providing an SQL script to setup stuff like triggers, sequences etc., which can be copied and pasted into SQL*Plus. I would like the script to not ...
7
votes
6answers
725 views

Best Way To Determine if a Sequence is in another sequence in Python

This is a generalization of the "string contains substring" problem to (more) arbitrary types. Given an sequence (such as a list or tuple), what's the best way of determining whether another sequence ...
6
votes
1answer
195 views

Finger Tree (Data.Sequence) vs Rope (Data.Rope) (Haskell, or in general)

What are the key differences between a Finger Tree (Data.Sequence) and a Rope (Data.Rope) (Edward Kmett's version or Pierre-Etienne Meunier's version? In the Haskell libraries, Data.Sequence has ...
6
votes
4answers
151 views

Mapping over sequence with a constant

If I need to provide a constant value to a function which I am mapping to the items of a sequence, is there a better way than what I'm doing at present: (map my-function my-sequence (cycle ...
6
votes
4answers
258 views

Take N elements from sequence with N different indexes in F#

I'm new to F# and looking for a function which take N*indexes and a sequence and gives me N elements. If I have N indexes it should be equal to concat Seq.nth index0, Seq.nth index1 .. Seq.nth indexN ...
6
votes
4answers
458 views

“average length of the sequences in a fasta file”: Can you improve this Erlang code?

I'm trying to get the mean length of fasta sequences using Erlang. A fasta file looks like this >title1 ATGACTAGCTAGCAGCGATCGACCGTCGTACGC ATCGATCGCATCGATGCTACGATCGATCATATA ...
6
votes
3answers
840 views

Which command would replace IDENTITY INSERT ON/OFF from SQLServer in Oracle?

I have to migrate this query (simplified here) from T-SQL to ORACLE SET IDENTITY_INSERT table ON INSERT INTO table (id, value) VALUES (1, 2) SET IDENTITY_INSERT table OFF id being an Identity ...
6
votes
3answers
509 views

Is it possible to match with decomposed sequences in F#?

I seem to remember an older version of F# allowing structural decomposition when matching sequences just like lists. Is there a way to use the list syntax while keeping the sequence lazy? I'm hoping ...
6
votes
5answers
206 views

pythonic format for indices

I am after a string format to efficiently represent a set of indices. For example "1-3,6,8-10,16" would produce [1,2,3,6,8,9,10,16] Ideally I would also be able to represent infinite sequences. Is ...
6
votes
4answers
8k views

Oracle: sequence MySequence.currval is not yet defined in this session

The title kind of says it all. What does this mean, and how can I get around it? SELECT MySequence.CURRVAL FROM DUAL; Result: ORA-08002: sequence MySequence.CURRVAL is not yet defined in this ...
5
votes
3answers
94 views

Generate multiple sequences of numbers with unique values at each index

I have a row with numbers 1:n. I'm looking to add a second row also with the numbers 1:n but these should be in a random order while satisfying the following: No positions have the same number in ...
5
votes
2answers
201 views

Does Data.Vector replace Data.Sequence?

I've been quite a fan of Data.Sequence. But as I've been learning about Data.Vector, it seems that it can do everything Data.Sequence can, but better, plus it can do more stuff. Should we be ...
5
votes
4answers
267 views

For loop in scala without sequence?

So, while working my way through "Scala for the Impatient" I found myself wondering: Can you use a Scala for loop without a sequence? For example, there is an exercise in the book that asks you to ...
5
votes
1answer
77 views

How can I satisfy my woes with R's `:` operator?

R's : operator has some well-known gotchas: a = c(1, 2, 3) set.zero = function(n) a[1:n] <<- 0 set.zero(0) # `a` is now c(0, 2, 3) I could just write a function that solves this by making 1:0 ...
5
votes
5answers
240 views

Find missing and overlapping numbers in sequences

Let's say we have a data structure like this: var sequences = new List<Tuple<int, int>> { new Tuple<int, int>(1, 10), new ...
5
votes
4answers
184 views

Recursively add sequence of numbers

Hey im trying to refresh my mind with a bit of recursion. I want to add all numbers from 'start' to 'end' inclusive. I.e if start was 1, and end was 5. Then the answer would be 1+2+3+4+5 = 15 So far ...
5
votes
1answer
220 views

Finding the k-longest sequences in an one-dimensional array?

In context of the realization of a project I need to find the k-longest sequences in PHP. There are many ways to implement this - but which algorithm is the fastest for PHP? Which algorithm would you ...
5
votes
3answers
78 views

How to locate a sequence of values (specifically, bytes) within a larger collection in .NET

I need to parse the bytes from a file so that I only take the data after a certain sequence of bytes has been identified. For example, if the sequence is simply 0xFF (one byte), then I can use LINQ on ...
5
votes
3answers
3k views

Sequential Guid Generator C#

Is there any way to get the functionality of the Sql Server 2005+ Sequential Guid generator without inserting records to read it back on round trip or invoking a native win dll call? I saw someone ...
5
votes
8answers
381 views

How to design table that can be re-sequenced?

I need to make a design decision about database. The requirment is that one database table has an *AUTO_INCREMENT PRIMARY KEY* field called id. By default, each row is shown to user (in web) sorted ...
5
votes
3answers
895 views

Do recursive sequences leak memory?

I like to define sequences recursively as follows: let rec startFrom x = seq { yield x; yield! startFrom (x + 1) } I'm not sure if recursive sequences like this should be ...
5
votes
4answers
20k views

How to create an Oracle sequence starting with max value from a table?

Trying to create a sequence in Oracle that starts with the max value from a specific table. Why does this not work? CREATE SEQUENCE transaction_sequence MINVALUE 0 START WITH (SELECT ...
5
votes
8answers
874 views

F# array_chunk for Sequence

I'm having some trouble making a sequence. Basically I need to chop a sequence into a sequence of arrays. Seq.windowed almost does it but I don't want duplicate elements. I can get what I want by ...
5
votes
5answers
7k views

XML Entity for “/”?

So I'm writing some XML generating code, and found that the following attribute value was screwing up the XML formatting: "Jim/Bob" So I looked into the XML Entities used as escape sequences and ...
4
votes
4answers
128 views

How do I efficiently create a perl hash of consecutive numbers?

I need to create something like this: my $valueref = { 1 => 1, 2 => 2, 3 => 3, 4 => 4 }; Based on certain conditions, it might be up to 40, or 50 or 60. In each case it ...
4
votes
1answer
75 views

Kettle: Filling field with sequence without conflict

I have a data stream with the following structure user_id (integer) user_name (string) The user_id is anything between 100 and 65536. I want to add a target_user_id (integer) field according to the ...
4
votes
2answers
106 views

Returning duplicates in a sequence

The best I could come up with was: (defn dups [seq] (map (fn [[id freq]] id) (filter (fn [[id freq]] (> freq 1)) (frequencies seq)))) Is there a more concise way?
4
votes
3answers
99 views

Subsequence search

I have a large number of lists (35 MB in total) which I would like to search for subsequences: each term must appear in order but not necessarily consecutively. So 1, 2, 3 matches each of 1, 2, 3, ...
4
votes
5answers
96 views

SQL Server - Implementing sequences

I have a system which requires I have IDs on my data before it goes to the database. I was using GUIDs, but found them to be too big to justify the convenience. I'm now experimenting with ...

1 2 3 4 5 12