Viewing 15 posts - 1 through 15 (of 66 total)
I get an error message near = on last line
December 24, 2012 at 1:08 pm
I basically want to say if @Component = -1 then parentTypeId In (601, 605, 606) else parentTypeId = @Component
December 24, 2012 at 1:07 pm
No triggers associated with this stored procedure.
December 7, 2011 at 11:13 am
I have something like this in the stored proc:
-- table variable for the BroadView data transformed into PackagingForms format
DECLARE @BroadViewData TABLE
(
EpisodeId INT,
EpisodePackageFormatId INT,
EpisodePackageNumber VARCHAR(50),
WebTagBroadViewId VARCHAR(50),
FormatSheetBroadViewId VARCHAR(50),
OnAirOfferBroadViewId VARCHAR(50),
FundingBedBroadViewId VARCHAR(50),
FlattenedInd CHAR(1),
BroadViewId INT,
BroadViewHashCode...
December 6, 2011 at 7:20 pm
The Alter Table statement succedded well.
When I expand the table columns, I already see the added columns. Is there anything ellse I need to do for the stored procedure to...
December 6, 2011 at 12:50 pm
this problem was posted long time ago. I no longer work on this project, therefore, I cannot test it.
July 21, 2011 at 8:25 am
Your code only works if it is like this:
Declare@hostNameIP VARCHAR(1000);
set @hostNameIP = 'AMEDNBWR01C003X';
Declare@softwares VARCHAR(Max);
set @softwares = NULL;
Declare@Make VARCHAR(5000);
Set @Make = 'LENOVO';
Declare @SoftwareQuery VARCHAR(5000);
CREATE TABLE #SoftwareInfo
(
HostName Varchar(1000),
SerialNum...
April 28, 2011 at 2:04 pm
Thanks. I will review your code and make ajudgestments.
April 27, 2011 at 1:08 pm
Viewing 15 posts - 1 through 15 (of 66 total)