Viewing 10 posts - 151 through 160 (of 160 total)
The stored procedure works, because if I execute it outside the trigger, it works.
Maybe my syntax is wrong for the trigger or something
January 28, 2014 at 6:45 am
Yeah that worked thanks, its not selecting that column(ADR3) anymore. But its not giving me any data, just showing the column titles.
January 28, 2014 at 6:08 am
HI,
I have changed my code up so get only the specific record needed.
Here is what it look like now.
Once again I don't get any errors, but its like only the...
January 28, 2014 at 5:54 am
Yeah there are more than one, but there aren't duplicates, one address can be used more than once, so I need to create a view that I can query later...
January 28, 2014 at 5:07 am
Not to sure. There are more than 1 records but there are not duplicates.
Its just that there can be multiple entries for each address.
I need to create a view so...
January 28, 2014 at 3:38 am
When I do it before then I get the following error.
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >,...
January 28, 2014 at 3:26 am
Just below that I set the value.
SET @ADR3 = (SELECT ADR3
FROM PAT_NAMES_ADDRESS
WHERE ADR1 = @ADDRESS)
SET @ADDRESS = 'M & B Pumps Division'
January 28, 2014 at 3:21 am
Hi John,
I di what you said: SET @ADR3 = (SELECT ADR3
...
January 28, 2014 at 3:13 am
The SP inserts data into a table in another database.
The trigger should execute this stored procedure as soon as new data is inserted into the table.
January 20, 2014 at 6:27 am
Hi Can anyone please help me, I get the following error message:
Msg 245, Level 16, State 1, Line 2
Conversion failed when converting the varchar value 'TA1001F ' to...
January 15, 2014 at 6:43 am
Viewing 10 posts - 151 through 160 (of 160 total)