1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
Files
sql-server-samples/samples/features/r-services/predictive-analytics/scripts/Exec TrainTipPredictionModel.sql
2017-02-02 13:46:51 -08:00

11 lines
306 B
Transact-SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

USE [taxidata]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[TrainTipPredictionModel]
SELECT 'Return Value' = @return_value
GO