Questions tagged [utilities]

208 questions
0
votes
3 answers

How to write a JCL to send an email

How to write JCL to send an email but the content(Data) should be picked from another PDS/member. If anyone can let me know the JCL for what I need will be helpful.**
Saurav
  • 11
  • 1
  • 1
0
votes
1 answer

Using ls -lR ignore given REGEX

I’m using ls -lR | ... to get my desired output, but now I need something that would force ls to ignore given regex expression. Is it possible to achieve this? I found ls -I and ls --ignore but for some reason I get: illegal option error [macOS…
Makaveli_O
  • 29
  • 5
0
votes
0 answers

Is there any way to use Wrap (from Oracle client utilities) as a portable, or easier to be installed on Linux?

I was looking for automation in some processes, and one goal would be using wrap command (from Oracle client) in the build server, to obfuscate some scripts. I could install Oracle database utilities on Windows, but I'm having no luck with Ubuntu…
Rodrigo Nantes
  • 77
  • 1
  • 10
0
votes
1 answer

Conjoint analysis levels error - incorrect number of subscripts on matrix?

I'm working on a homework case using Conjoint analysis and running into an error that reads: Error in X[k, j] <- x[i, j] : incorrect number of subscripts on matrix I have tried looking up the error and cannot find anything that is conjoint analysis…
Bailey
  • 23
  • 2
0
votes
3 answers

MultiLine Regular Expression and outputting to a file in windows

I have an log file that I need to extract specific patterns from. I need to find and then process them into a new file. grep on Linux would usually do the trick but the regular expression spans multiple lines, which I understand grep does not…
Andrew Redd
  • 4,632
  • 8
  • 40
  • 64
0
votes
1 answer

SQL utility scripts for schema modifications ( What would I call this? )

In a previous job we had an extensive SQLServer database that constantly had new fields being added years after release. We stored each table schema in a seperate plain text file that contained a SQL create or alter statement ( I can't remember…
SenseiHitokiri
  • 489
  • 1
  • 6
  • 22
0
votes
2 answers

tools for appending column(s) to large CSV-file (merging CSV-files by column(s))

To create two csv-files: echo -e "123\n456" > t0.txt echo -e '"foo","bar"\n"foo\"bar\"","baz"' > t1.txt Now, I want append the columns in t1.txt to t0.txt, so that the result becomes this: 123,"foo","bar" 456,"foo\"bar\"","baz" First try, using…
Hans Ekbrand
  • 405
  • 5
  • 13
0
votes
2 answers

A good starting point for development Windows utilities interfacing with OS

I would like you to give me some good resources regarding Windows development of applications that integrates with OS like Application managers, Docks, Task-bar\System tray etc. Resources like how to interact with particular subsystems are welcome.…
Jax
  • 93
  • 2
  • 7
0
votes
2 answers

summing the values of a column based on the id of another column using Linux tools

I have a file that is ' ' delimetered with a few fields. I know how to select a specific field and sum that by itself, but was wondering if there was a clean way of doing this using the linux utilities, otherwise I will do it in C. An example of…
BradMcDanel
  • 543
  • 3
  • 15
0
votes
1 answer

Understanding JDK 1.6 on Ubuntu Linux IPv6 output handling

I'm running Ubuntu 10.10 and my hosts configuration are as following: root@maxim-desktop:~# cat /etc/hosts 192.168.20.20 maxim-desktop # Added by NetworkManager 192.168.10.20 maxim-lp 127.0.0.1 localhost.localdomain localhost ::1 …
Maxim Veksler
  • 29,272
  • 38
  • 131
  • 151
0
votes
1 answer

how to figure out a program's network and system resource usage behaviour?

when I download a program I want to know the many behaviour of this new program, i.e., does it connect to internet and sending my local computer data to somewhere, and what the system resources/functions have been called and what the new…
0
votes
0 answers

Run-time error '28' on my utilities module (Access VBA)

For the life of me I can't find out the reason why code stopped compiling, it has a runtime error 28 - Out of Stack Space It used to compile fine and it stopped with new update to Windows 10. Not even sure if that is related. Could it be just too…
pp825
  • 1
  • 1
0
votes
0 answers

First argument is not an open RODBC channel on IDEAR tool

I am having this problem. I want to use the IDEAR tool on my SQL Server Database. I run the IDEAR code Github provided on RStudio and select the YAML file I created in order to connect to my database. After selecting the file I get the following…
0
votes
2 answers

What is the "Jodatime" / "Apache commons" of Zip/Unzip Java utilities?

I'm sure that there is a mature, widely used ZIP file utility out there, I just can't seem to find out. Something with the same maturity as Apache Commons, Google Collections, Joda Time I'm trying to do the simplest task of getting a zip file as a…
Eran Medan
  • 44,555
  • 61
  • 184
  • 276
0
votes
1 answer

Best way to build an UI utility class

I want to build an utility class. It should read values from an database an providing typical UI or interaction features e.g. setting the title of the application, setting a background picture, playing background music. Because of asking a other…