Все вопросы: [data-manipulation]
6 вопросов
Какая технология / язык лучше всего подходит для преобразования программ обработки данных MARK IV?
Мой офис полагается на десятки старых программ MARK IV на мэйнфрейме для извлечения и обработки данных из базы данных DB2 в файлы мэйнфрейма (которые в конечном итоге превращаются в электронные таблицы Excel на данный момент). Мне было поручено начать процесс преобразования - разобраться в эт...
Artificially Add a Record To MySQL Results
Is there any way to slip in a record to the top of a result set in MySQL? For instance, if my results are: 1 | a 2 | b 3 | c etc I want to be able to get: Select | Select 1 | a 2 | b 3 | c etc Where "Select" isn't actually a part of the recordset, but artificially inserted....
How do you handle the fetchxml result data?
I have avoided working with fetchxml as I have been unsure the best way to handle the result data after calling crmService.Fetch(fetchXml). In a couple of situations, I have used an XDocument with LINQ to retrieve the data from this data structure, such as: XDocument resultset = XDocument.Parse(...
String manipulation in AppleScript
I have the challenge in AppleScript to manipulate a string as follows: Base string is an email recipient display name, say: First Last ([email protected]) I'd like to "trim" the display name to remove the actual email address in the brackets The desired result should be First Last - so the...
Как удалить объекты из массива в Java?
Для массива n объектов, допустим, это массив строк со следующими значениями: foo[0] = "a"; foo[1] = "cc"; foo[2] = "a"; foo[3] = "dd"; Что мне нужно сделать, чтобы удалить все строки / объекты, равные "a" в массиве?
Удаление элементов с помощью Array.map в JavaScript
Я хотел бы отфильтровать массив элементов с помощью функции map(). Вот фрагмент кода: var filteredItems = items.map(function(item) { if( ...some condition... ) { return item; } }); Проблема в том, что отфильтрованные элементы по-прежнему занимают место в массиве, и я х...