Custom Query (1135 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 1135)

Ticket Resolution Summary Owner Reporter
#1172 дубликат Необходимо изменить процедуры для работы ревизии r242/base Denis_N Denis_N
Description

Необходимо изменить процедуры для работы ревизии r242/base, где был исправлен баг: несоответствия должны выводить только непустые комментарии типа Запись, а выводят и пустые тоже

drop procedure mismatchQuery;

DELIMITER }

CREATE PROCEDURE mismatchQuery(min int, max int, searchName varchar (100), searchSerial varchar (100), searchComment varchar (10000)) READS SQL DATA BEGIN set @prevtotal := 0; set @mintotal := 0; select * from (select *, @mintotal as mintotal, @prevtotal := @mintotal - total as prevtotal from (select products.serial, history.uid, history.date, hist1.total from history inner join (select uid, count(uid) as total from history where (type_write = "mismatch" or type_write = 'record' or type_write = "repair" or (type_write = "otk" and status = "fail") or (type_write = "testing" and status = "fail")) and comment is not null and comment != group by uid) as hist1 on history.uid = hist1.uid inner join products on products.uid = history.uid where (products.name like searchName and products.serial like searchSerial and history.comment like searchComment) and (history.uid, history.date) in (select uid, max(date) from history where (type_write = "mismatch" or type_write = 'record' or type_write = "repair" or (type_write = "otk" and status = "fail") or (type_write = "testing" and status = "fail" )) and comment is not null and comment != group by uid ) group by products.serial, history.uid, history.date, hist1.total order by history.date desc) as hist2 where (@mintotal := @minTotal + total)) as hust2 where hust2.mintotal > min and hust2.prevtotal < max;

END} DELIMITER ;


drop procedure mismatchQueryWithoutOtkRows;

DELIMITER }

CREATE PROCEDURE mismatchQueryWithoutOtkRows(min int, max int, searchName varchar (100), searchSerial varchar (100), searchComment varchar (10000)) READS SQL DATA BEGIN set @prevtotal := 0; set @mintotal := 0; select * from (select *, @mintotal as mintotal, @prevtotal := @mintotal - total as prevtotal from (select products.serial, history.uid, history.date, hist1.total from history inner join (select uid, count(uid) as total from history where (type_write = "mismatch" or type_write = 'record' or type_write = "repair" or (type_write = "testing" and status = "fail")) and comment is not null and comment != group by uid) as hist1 on history.uid = hist1.uid inner join products on products.uid = history.uid where (products.name like searchName and products.serial like searchSerial and history.comment like searchComment) and (history.uid, history.date) in (select uid, max(date) from history where (type_write = "mismatch" or type_write = 'record' or type_write = "repair" or (type_write = "testing" and status = "fail") or history.type_write = 'record') and comment is not null and comment != group by uid) group by products.serial, history.uid, history.date, hist1.total order by history.date desc) as hist2 where (@mintotal := @minTotal + total)) as hust2 where hust2.mintotal > min and hust2.prevtotal < max;

END} DELIMITER ;

#1171 готово РЭ: новая функция "Proxy ARP" платы VE-02 исполнения 1 Vladimir alx
Description

В плате VE-02 исполнения 1 появилась новая функция - Proxy ARP. При включении этой функции плата отвечает на запросы ARP, полученные из интерфейса WAN (eth0), если запрошенный адрес принадлежит интерфейсу LAN (eth2). Для включения Proxy ARP в веб-интерфейсе блока MC04-DSL-3U в диалоге конфигурации платы VE-02 добавлен чекбокс "Proxy ARP":

Предлагаю добавить описание этих функции и чекбокса в РЭ аппаратуры MC04-DSL-3U.

#1170 готово РЭ: добавить описание статистики канальных окончаний R232, R422, R485 платы VE-02 исполнения 1 Vladimir alx
Description

Канальные окончания R232, R422, R485 платы VE-02 исполнения 1 теперь собирают статистику, которая может отображаться в веб-интерфейсе. Статистика включает в себя следующие метрики:

  • общее количество принятых из порта байт;
  • общее количество переданных в порт байт;
  • общее количество принятых из сети байт;
  • общее количество переданных в сеть байт;
  • количество принятых из сети байт в текущем соединении;
  • количество переданных в сеть байт в текущем соединении;
  • общее количество соединений.

При клике иконки "Статистика потока" в строке канального окончания R232, R422 или R485 отображается окно со статистикой:

Предлагаю написать об этом в РЭ аппаратуры MC04-DSL-3U.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.