Questions tagged [data-files]

209 questions
4
votes
5 answers

SQL Server - Is it possible to find the size actually used in an MDF or LDF file

When adding a .MDF (.NDF) or .LDF file to a SQL Server, we have the option to set its initial size, auto-growth, and incremental (percent or absolute). After the database is in operation for a while, is it possible find how much of the actual size…
Song Li
  • 141
  • 2
  • 8
4
votes
1 answer

Including logging.conf in setup.py?

In my package_name subdirectory (one below "setup.py") I have a "logging.conf" file. How do I include it in my setup? Attempt from distutils.sysconfig import get_python_lib data_files=[(path.join(get_python_lib(), package_name), …
A T
  • 13,008
  • 21
  • 97
  • 158
3
votes
0 answers

How to run collection with data file one row per request, next row per second request and not all rows per each request in postman

In postman collection I have 4 requests and I have csv file with data for each of these requests. I'd like to 1st request uses 1st data row, 2nd request uses 2nd data row and so on. Is there a way to run one row per test? What I want is to test 1…
valen-tina
  • 61
  • 3
3
votes
2 answers

Is there a R code set to use PubMed ID or DOI to get data files for that article, please?

I am trying to get the data file names from NCBI or PubMed that are related or attached to hundreds of unique DOIs or PMIDs, in R language. For example. I have PMID: 19122651 and, I want to get the names of the three GSEs connected to it, which…
Shawn
  • 149
  • 1
  • 3
  • 9
3
votes
2 answers

gnuplot: load datafile 1:1 into datablock

How can I read a datafile as-is (or 1:1) into a datablock? And how could I do this platform independently? My attempt so far: ### load datafile "as is" into datablock for different platforms FILE = 'Test.dat' if (GPVAL_SYSNAME[:7] eq "Windows") { …
theozh
  • 22,244
  • 5
  • 28
  • 72
3
votes
2 answers

What is the benefit of using nested data types in Parquet?

Is there any performance benefit resulting from the usage of using nested data types in the Parquet file format? AFAIK Parquet files are usually created specifically for query services e.g. Athena, so the process which creates those might as well…
user976850
  • 1,086
  • 3
  • 13
  • 25
3
votes
2 answers

How to include a data file with a Perl module?

What is the "proper" way to bundle a required-at-runtime data file with a Perl module, such that the module can read its contents before being used? A simple example would be this Dictionary module, which needs to read a list of (word,definition)…
Greg Kennedy
  • 430
  • 4
  • 23
3
votes
1 answer

.CHM Help Files and Their Favorites

I have a huge list of favorites in a big .chm file and I know the favorites are attached to the hh.dat file in each users AppData folder. I have found it and I see the bookmark links when I open the hh.dat file in notepad. The problem is I cannot…
napkinsterror
  • 1,915
  • 4
  • 18
  • 27
3
votes
1 answer

setup.py's sdist, bdist and install behaving differently regarding data_files

I'm trying to distribute web assets along with a web app that I'm trying to package, but I'm failing miserably. I don't understand why I have a different list of files installed or packages when I run bdist, sdist, or install. Project Layout The…
leucos
  • 17,661
  • 1
  • 44
  • 34
3
votes
0 answers

Is there a specific design pattern for managing YAML aliases in large files?

I have a big YAML file that stores test cases for my app. It uses a lot of anchors and alias to share parts among test cases. It was initially ok to manage, but it now seems to have outgrown from what we can easily edit. It is now really difficult…
Dice
  • 105
  • 1
  • 8
2
votes
1 answer

Python setup.py: data_files can't copy 'directory': doesn't exist or not a regular file

I have the following python project structure: . ├ setup.py ├ doc | ├ file.css | ├ file.html | └ file.js └ src ├ matlabsources | └ └ mypythonpackage ├…
Milan
  • 1,547
  • 1
  • 24
  • 47
2
votes
2 answers

Errors creating Oracle DDL objects from script: "invalid common user or role name", "file already part of database" etc

I have a purpose: create some small model in Oracle consisting of two schemas. Every schema will contain 2-3 tables and 2-3 packages for functions. And I tried to write a script of creation required DDL objects, using DBForge. And here I have some…
Maxi-Hard
  • 89
  • 4
2
votes
1 answer

What is the correct way to write a file path, to access a document in a folder on your computer

I keep getting errors, that the file doesn't exist. This is the first time im doing this and cant find a sufficient answer on google. the file is stored in a folder with the name : "maths", the documents name is "Data.txt" the code ive written to…
user13553897
2
votes
1 answer

Plotting some figure simultaneously with changing their names in Python

I use the following code for plotting and saving 8 figures. This code does not show all 8 figures in one time. How to do that? because now we should close one figure and another one appears. and how can change the name and title of figure once for…
Ma Y
  • 696
  • 8
  • 19
2
votes
2 answers

Reading next line from data file VB Script

I am trying to get the next line of data tag file, however because there are multiple lines with the same tag it is going through and taking the last one but I need the first one. Example tag file below. Summary SA2100|7775555 Summary…
lulubelle
  • 31
  • 7
1
2
3
13 14