Viewing 4 posts - 1 through 4 (of 4 total)
Hi, Jeff--
The one place I actually need this is when a procedure has not yet been deployed to Production, and a customer wants the output it produces. Example: sales details...
May 8, 2019 at 12:55 am
At the direction of an expert, I am putting this question onto Stack Exchange. Thanks.
October 7, 2015 at 10:38 am
You don't actually need to name the PK:
CREATE TABLE #Test (ID INT IDENTITY);
ALTER TABLE #Test ADD PRIMARY KEY CLUSTERED (ID);
- or -
CREATE TABLE #Test
(
ID INT IDENTITY
, SomeCharVal CHAR(10)
,...
September 29, 2015 at 2:10 pm
You CAN, however, build an update VIEW that includes an INSTEAD OF TRIGGER, allowing you to update more than one TABLE from the CTE through the VIEW, based on more...
September 29, 2015 at 11:04 am
Viewing 4 posts - 1 through 4 (of 4 total)