Skip to main content

Questions tagged [copying]

This tag refers to the process of making an exact duplicate of a file, database, etc.

copying
0 votes
1 answer
23 views

making a new table from the results of a for statement of selected columns

i am new to python and i would like to know how i could transfer a column to another table if after analysing its regression score value r2 is greater than a set value here is a sample of my code for ...
Patrick Ssennyonjo's user avatar
0 votes
0 answers
7 views

Is it possible to copy contents and format of a range from other sheets to the first sheet depending on a condition in cell A1 of the first sheet?

I have content on Sheet 2 and Sheet 3 in cells B1:H29 including merged cells and coloured backgrounds. I need to devise a way of copying the data and format of the content from Sheet 2 or Sheet 3 ...
Allan Thompson's user avatar
0 votes
1 answer
25 views

Modifying primary_key/sort_key for an existing table that has materialized views

I Have a table stats_view_source that is described as follows: CREATE TABLE stats_view_source ( `timestamp` DateTime, `user_ip` String, `user_country` Nullable(String), `user_language` ...
radonthetyrant's user avatar
-1 votes
1 answer
37 views

Why (and how) is copying prevented on this website? [duplicate]

Apologies for a possibly trivial question, but does anyone know why/how selecting text with the mouse and copying it is disabled on my website: bit.ly/3QzwBwJ. This is hand-coded in PHP and in all the ...
westernKid's user avatar
0 votes
0 answers
23 views

How do I add a general progress bar for the entire copying process (all files), leaving the progress bar for each of the files untouched?

friends! How do I add a general progress bar for the entire copying process (all files), leaving the progress bar for each of the files and the multithreaded copying process intact? def copy_file(...
dhpro100's user avatar
1 vote
0 answers
128 views

EWS Operation Item.Copy fails with 'full_access_as_app' permission

We have been using the EWS Item.Copy Operation for nearly 5 years. Since last week (Monday 26th of February 18:00 CET) this operation started failing for 2 of our 40 customers. No configuration has ...
Hielke Hoeve's user avatar
0 votes
1 answer
40 views

Operator overload = not copying to 2nd variable-object

Trying to just copy one object array to a second array minus first item in array (which I don't believe should matter). (First array 33 items and 2nd array has 32). Nothing is copying over. 2nd array ...
Nat Broughton's user avatar
1 vote
1 answer
23 views

Associating PNG FileNames With JSON FileNames and Randomizing

I have PNG and JSON files on a folder whose names are numbered from 1 to 1000. In other words, I have 2000 files. The PNG files match the JSON files by the number in their names. For example, the ...
Nilo dos Santos Orlandi's user avatar
0 votes
0 answers
37 views

Copying address of one array into another [duplicate]

public class zeroCheck { int a[]={2,3,4}; int c[]={5,6,7}; void addMore(int arr[]) { int another[] = new int[6]; System.arraycopy(a, 0, another, 0, 3); ...
Archit Mishra's user avatar
0 votes
1 answer
39 views

How to copy a variable to blank observations by other variables

I am attempting to copy data into blank rows based on the ID date and hour. I am having trouble getting this to apply based on examples I have seen on this forum. My extra layer of difficulty comes ...
Joshua Mercadel's user avatar
0 votes
1 answer
226 views

How can I repeat complex element multiple times on the same page?

For example, I have social tab in my header which I want to also add to footer. Said tab consist of multiple buttons with SVG images on top, eventlisteners connected to buttons id's and CSS formatting....
Maks111's user avatar
0 votes
1 answer
275 views

Linux sendfile()/splice() alternative for FreeBSD?

I'm learning POSIX and Linux syscalls. At the moment, I'm developing a basic program for copying files using different capabilities, in addition to read()/write(), for different systems in order to ...
000exploit's user avatar
0 votes
1 answer
47 views

Copying data with small changes in SQL Server

I have a unique issue. I have 2 tables that I must copy data into while changing the control group from 1 to 2. For every record in Controls, there is a record in Controls_Data to provide other ...
SethD02's user avatar
0 votes
3 answers
70 views

Copying delegates behavior

C# 11: file class C { public int IntField1; } file struct S { public int IntField1; } file class StructureVsClassWhenCopying { private static void v1() { System.Console....
user avatar
0 votes
1 answer
748 views

Alternative for python shutils.copytree?

recently i built a tool, which is able to copy files and directories to a selected location. I used the shutil.copy function for copying files and the shutil.copytree function for copying directories. ...
PatrickRKa's user avatar

15 30 50 per page
1
2 3 4 5
26