Viewing 9 posts - 1 through 9 (of 9 total)
Hi Ninja -
Could you please give an example? I'm not following how this makes concatenation work easier.
Thanks,
Susan
October 19, 2006 at 10:28 am
Hi Roberto,
Thanks a lot for the advice and the links.
Keep well,
susan
November 11, 2005 at 11:01 am
These are both great suggestions. I'm wondering whether there's anything built-in in SQL Server that I could use, instead of a 3rd party encryption system.
Maybe instead of asking about...
November 11, 2005 at 10:33 am
Soumna,
Thanks for posting the solution!
July 26, 2005 at 3:33 pm
Hi Janet,
Rather than going through all of your code and changing SQL statements, I think you'd be better off fixing your data: run update queries to change...
May 10, 2005 at 10:52 am
We had a similar need to execute a parameter-driven Oracle stored proc from SQL server. We do this using linked server, via a small Oracle table with an...
October 8, 2004 at 10:00 am
What if no new records are added to the Orders table? Wouldn't this query always return the same 10 records? How is that random?
August 16, 2004 at 10:01 am
I'd convert the 3 dates to YYYYMM format:
SELECT * FROM table_name
WHERE CONVERT(char(6), some_field,112)
BETWEEN
CONVERT(char(6), lower_date_field,112)
AND
CONVERT(char(6), upper_date_field,112)...
June 23, 2004 at 10:06 am
Viewing 9 posts - 1 through 9 (of 9 total)