Explore languages searching for category and for country
Internal error
ACTSQLVAR: [Microsoft][ODBC SQL Server Driver]Query timeout expired -2147217871 0 Microsoft OLE DB Provider for ODBC Drivers at SQL is ;WITH MySource as (
SELECT ScriptEcho, ScriptMilliSeconds
FROM (VALUES ('findlanguages.prx?NodeID=2113100&which=byMyCatAndCountry&Country=us','6855' ) )
AS TempTable(ScriptEcho, ScriptMilliSeconds)
)
MERGE tblScriptEcho AS MyTarget
USING MySource
ON MySource.ScriptEcho = MyTarget.ScriptEcho
WHEN MATCHED AND MySource.ScriptMilliseconds > MyTarget.ScriptMilliseconds THEN
UPDATE SET
ScriptMilliSeconds = MySource.ScriptMilliSeconds
WHEN NOT MATCHED THEN
INSERT
(
ScriptEcho,
ScriptMilliSeconds
)
VALUES (
MySource.ScriptEcho,
MySource.ScriptMilliSeconds
);