Viewing 15 posts - 61 through 75 (of 75 total)
GilaMonster,
Thanks for your quickly reply.
In this case, the application uses a web service, but it is a windows application, installed and used just inside an intranet. I think i do...
November 8, 2010 at 11:46 am
Hi,
Steve block,
Most of cases, the full name is fullfilled. Its about patient names. But i agree with you.
SSCommited,
I don't know how to work with full search.. Can you point me...
October 11, 2010 at 3:37 pm
I've found another solution using dynamic sql:
DECLARE @NAME VARCHAR(100)
SET @NAME = 'john charles smith'
declare @CMD VARCHAR(8000)
SET @CMD = ('
SELECT
*
FROM USERS
WHERE
SEARCH_NAME LIKE ''% '+replace(@NAME,' ',' %'' AND SEARCH_NAME...
October 8, 2010 at 3:47 am
Thanks for your help.
Assuming that the user do not will search for 9 or more names of a patient i will use something like this:
SELECT
*
FROM
USERS
WHERE
NAME IS NOT NULL
AND (
NAME...
October 4, 2010 at 9:40 am
Chris,
Yes, there are other parameters, such as birthdate, number, but in this case i only want to search by name.
Thanks for remember the endless possibilities..
SSCommitted,
I've tried create the select statement...
October 4, 2010 at 6:39 am
Thanks for your help.
Since i already created the individual stored procedures for each step, which returns the 'scope_identity' value, i'm thinking to use transaction scope, like in this link (
October 4, 2010 at 4:51 am
Sean,
I was really thinking in 'using' statement in c# 🙂 I'll read some on connection pooling.
Craig,
I had already thought about re-design the apllication, but it scares me a litlle.. :unsure:...
September 24, 2010 at 1:28 pm
SeanLange, thanks for your reply. 🙂
I really was not disposing the connection, i was just closing it. :s
Regarding the try-catch blocks, i will make sure that all of them are...
September 24, 2010 at 12:38 pm
I tryed reboot the server and it works! Thanks! 🙂
January 8, 2010 at 7:56 am
Thank you a lot! I will follow what you said! 🙂
December 2, 2009 at 7:14 am
Hi, i'm trying use this code and i do not have the '?' symbols, i rewrite the code in a new query and continues giving the error
"Incorrect syntax near '?'."
Any...
September 29, 2009 at 10:54 am
Hi,
i faced a similar problem and i created a stored procedure that uses bcp, fmt format file and xp_cmdshell..
The code follow this:
select @cmd = 'bcp "SELECT column from table" queryout...
September 15, 2009 at 11:08 am
Hi Elliott W,
Thanks for your reply.
Now, the problem is solved. It was a proxy server that was blocking the access to database server..
July 29, 2009 at 2:35 am
Are there any freeware tools that help to manage database version?
April 21, 2009 at 6:19 am
Viewing 15 posts - 61 through 75 (of 75 total)