Hello,
I have a stored proc that works when I run it in query anlalyzer, but
returns an error when called from code. Do I need to make some change to
the query to make it callable? Thanks for any help.
SP:
create proc udpCombine
@comb varchar (10),
@keep varchar (10)
AS
--perform up...
more >>
Hello SQL wizards,
I'm trying to match saved searches to a newly inserted "job", and send
an email for matching searches. get about 20 job postings a day, and
have about 150k saved searches. want to do this as quickly as possible.
Please advise...
here's what I need to do:
1. job seekers...
more >>
Can someone tell me why this creates an error:
declare @int int
set @int = 55
select cast(@int as char(Len(@int)))
CHAR takes an integer argument, and LEN returns an integer, so why
should it fail?
Probably something about set-based logic that eludes me, that would
work fine in proc...
more >>
Hi, All,
First of all thanks for reading my post. I’m trying to figure out how to
add strings to a NTEXT data type column.
TABLE (
NoteID VARCHAR(10) PRIMARY KEY,
NoteOppID VARCHAR(10) FOREIGN KEY,
NoteDetails VARCHAR(1000)
)
I need to take all NoteDetails in the above table...
more >>