Hi EveryBody, in first place i send my apollogies for my bad english.
i have a code in python that open a browser with url X... for example "htttps://www.google.com" y try exec in sql there query this way:
EXECUTE sp_execute_external_script @language = N'Python'
, @script = N'
import webbrowser
webbrowser.register("chrome",None,
webbrowser.BackgroundBrowser("C://Program Files//Google//Chrome//Application//chrome.exe"))
webbrowser.get("chrome").open("https://www.google.com")
'
GO
when y type run, the query execute very well in managmetn sql, but the process only showme in the task manager of windows in background.
i need exec in foreground.
i hope can helpme please.
thanks everybody!!!!!