0
我想知道是否可以在deltaImportQuery中調用storedProcedure。 這就是我想要做的。Solr dataimporthandler在deltaImportQuery中使用storedProcedure
<entity name="entity1" transformer="RegexTransformer" pk="id"
query="SELECT * FROM table1
INNER JOIN tabl2 ON table2.tbl1Id = table1.id"
deltaImportQuery="exec populatetable2 ${dih.delta.id}"
deltaQuery="select id from table1 where dtmodified > '${dih.last_index_time}'"
</entity>
ALTER PROCEDURE (@col1 int)
AS
BEGIN
DELETE FROM table2 WHERE tbl1Id = col1
INSERT INTO table2 (col1,col2) Values(1,2)
SELECT * FROM table2
END
在我的存儲過程中,我正在刪除n行並將其插回。然後最後運行一條select語句從delta導入查詢中獲取一些數據。
任何人都可以告訴我,如果這是可行的solr或不?
謝謝