Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
14answers
914 views

How do you fix a bug you can't replicate?

The question says it all. If you have a bug that multiple users report, but there is no record of the bug occurring in the log, nor can the bug be repeated, no matter how hard you try, how do you fix ...
7
votes
2answers
125 views

replicate and

In the documentation of sapply and replicate there is a warning regarding using ... Now, I can accept it as such, but would like to understand what is behind it. So I've created this little contrived ...
5
votes
2answers
142 views

How to duplicate a MySQL database on the same server

I have a large MySQL database, lets call it live_db, which I want to replicate on the same machine to provide a test system to play around with (test_db), including table structure and data. In ...
3
votes
1answer
773 views

How can you replicate each row of an R data.frame and specify the number of replications for each row?

df <- data.frame(var1=c('a', 'b', 'c'), var2=c('d', 'e', 'f'), freq=1:3) What is the simplest way to expand the first two columns of the data.frame above, so that each row appears the number of ...
3
votes
2answers
641 views

Element-wise array replication according to a count

My question is similar to this one, but I would like to replicate each element according to a count specified in a second array of the same size. An example of this, say I had an array v = [3 1 9 4], ...
3
votes
7answers
1k views

How do I convert a 2X2 matrix to 4X4 matrix in MATLAB?

I need some help in converting a 2X2 matrix to a 4X4 matrix in the following manner: A = [2 6; 8 4] should become: B = [2 2 6 6; 2 2 6 6; 8 8 4 4; 8 8 4 4] How would I do ...
2
votes
1answer
154 views

R: When using the rep(..,..) to replicate 1020 a character variables, the result contains just 1019 replicates?

When programming within the R environment I used rep("[35,40)",1020). This should give me a list with 1020 times "[35,40)". However, the result contains only 1019 of these elements. The programming ...
2
votes
2answers
461 views

Perl Hash Slice, Replication x Operator, and sub params

Ok, I understand perl hash slices, and the "x" operator in Perl, but can someone explain the following code example from here (slightly simplified)? sub test{ my %hash; @hash{@_} = (undef) x ...
1
vote
4answers
39 views

Repeat a table multiple times on same page

I have a fairly complicated html table containing lots of PHP, CSS etc., and it comprises about 200 lines of code. I need to reproduce the table in three different areas on my webpage. What is the ...
1
vote
2answers
153 views

Common Lisp equivalent of Haskell's replicate?

replicate is a function that takes an integer and a sequence and returns the sequence repeated n times. E.g. replicate 3 ["a"] returns ["a", "a", "a"] Does Common Lisp have an equivalent function, ...
1
vote
2answers
337 views

Problem defaultCache and cache in distributed environment (Inconsistent data)

Using the same configuration, with only defaultCache, I get inconsistent data (case A). But if I add an additional cache entry will not get those errors of inconsistency (case B). Do you know why? I ...
1
vote
1answer
127 views

Why I can't read replicate data in MongoDB?

I have created a replica Set with 4 MongoD running. port: 2017, 2018, 2019, 2020 Very standard. I followed the instruction as in the documentation. Then I set 2020 be the primary one. And then I ...
1
vote
2answers
376 views

SQL Server : LENGTH() inside of REPLICATE()

I have a SQL Server table with the columns Lvl and Title. I need to insert a "-" in front of the title for every character in the Lvl field. As an example: If Lvl = 111 the title should become --- My ...
1
vote
1answer
69 views

how do I re-duplicate sql server database?

I would like to stress test my database, which is a hospital patient database. The current one is 2 GB. I would like to have a 100GB database, so I would like do the following: 1) read each patient ...
0
votes
1answer
49 views

Have a SVN checkout location connected to Codeplex and propagate updates to another develpment location connected to another SVN repository

I would like to checkout a read only SVN projects (e.g. from Codeplex) to a folder on my local disk, open the solution (let's say I am getting Dotnetnuke and open it's solution, add some projects to ...
0
votes
2answers
137 views

How can I replicate a table from SQL 2000 to SQL 2008?

I have a table on a SQL Server 2000 database, which I want copied verbatim to a 2008 server. I tried to do it manually with INSERT/UPDATE triggers, but this technique runs in a distributed ...