Viewing 15 posts - 6,646 through 6,660 (of 13,469 total)
change all the snippets like this:
...where codrf = (select ...
--TO
...where codrf IN (select ...
and somewhere in code you did not post, you have something like this:
...AND SOMECOLUMN IN= (select *...
October 3, 2011 at 9:41 am
Tan Hui Siang (10/2/2011)
Thanks, I'll try.
Elliot's Project makes the image insertion really simple;
here's a code example...once you have the CLR in place, it is soooo simple:
CREATE TABLE myImages(id int,filename...
October 3, 2011 at 5:51 am
pramany (10/1/2011)
but i am trying to insert data on multiple base tables in a view.
in order to insert into that view then, you would have to put an instead of...
October 2, 2011 at 1:45 am
yes, if you have myproc return a table. so much depends on what "my_proc" actually does.
CREATE PROCEDURE MyProc @param int
AS
BEGIN
SET NOCOUNT ON
SELECT ColumnList From SomeTable where...
September 30, 2011 at 1:02 pm
Evil Kraig F (9/30/2011)
September 30, 2011 at 11:55 am
Great job psoting sample Data, Kenneth;
what you are looking for is to use the FOR XML concatination technique.
based on your sample data, this seems to work perfectly;
/*
--Results
Field ...
September 30, 2011 at 10:09 am
MyDoggieJessie (9/30/2011)
You're certain the only thing...
September 30, 2011 at 9:59 am
MyDoggieJessie (9/30/2011)
Had a brain fart there when I posted my comment about the SMTP service...went into look to check on the SMTP...
September 30, 2011 at 9:39 am
run this query to check for mail sent but that failed;
there's a description column with any errors returned formt eh mails erver when it was sent; stuff like relaying not...
September 30, 2011 at 9:27 am
change the FROM statments to use inner joins and you''l find it a few seconds...
i'm guessing that the table alaised as qp is not mentioned in the where/join criteria.
FROM
...
September 30, 2011 at 9:16 am
SSC poster Elliot Whitlow has this CLR project for file manipulation , and includes Blob read write stuff as well;
it took me about three minutes to install, and has worked...
September 30, 2011 at 8:10 am
bitmasks are an old school way , from when memory cost dollars per bit, to maximize the amount of data stored in a byte. it had the cost of obfuscating...
September 30, 2011 at 7:14 am
rams.prsk (9/30/2011)
For eg : SUM of 1 & 2 =...
September 30, 2011 at 6:53 am
i think your issue is the display of a bitmask.
01011001 is a varchar representation of a bitmask.
you need to do all your math as integers, and display it with...
September 30, 2011 at 6:32 am
you need exclusive access to the database in order to change the owner...so if someone is in it, the query waits for them.
you'll need to wait till someones not in...
September 29, 2011 at 2:15 pm
Viewing 15 posts - 6,646 through 6,660 (of 13,469 total)