Viewing 15 posts - 10,171 through 10,185 (of 15,381 total)
nmcgowan (11/2/2012)
use [DJesus_eCristal]
GO
Msg 102, Level 15, State 1, Line...
November 2, 2012 at 8:58 am
Nice job with the ddl and sample data. However, it is much preferred to just include in your post so we don't have to download a file and unzip it...
November 2, 2012 at 8:25 am
You're welcome. Glad that worked for you.
November 1, 2012 at 1:38 pm
Thank you Sean. I was trying to return '50% fat' . Yes I realized that it is acting like an equal, sorry for the confusion.
So you are all good...
November 1, 2012 at 1:37 pm
David92595 (11/1/2012)
I'm new to SQL, specifically T-SQL, I've done some research online and have a general idea of triggers. But I wanted to ask the community for any really good...
November 1, 2012 at 1:06 pm
You can use a cte in a view so this should work for you.
;with FLOWTEST as
(
SELECT A.COMPKEY, B.HYDR_ID, B.DATE, B.hydr_gpm, B.gpm_20, B.gpm_10, B.gpm_0, B.staff_id, B.shift,
B.static, B.residual, B.pitot, B.pitot2, coeff,...
November 1, 2012 at 12:50 pm
igloo21 (11/1/2012)
Sean Lange (11/1/2012)
November 1, 2012 at 12:10 pm
I don't see anything wrong with this syntactically. What do you mean by "it's just not picking up by looking at p.State"? One thing you might do to help you...
November 1, 2012 at 11:43 am
SQL_path (11/1/2012)
A quick q how do you enable search like this below . It returned nothing for me.
I was using set Replace(@search,'%','[%]') with my first code %+@search+% before.
now...
November 1, 2012 at 11:36 am
This is a bit unorthodox but I think it would work in your case. Given that you can't expect great performance out of this due to the strange way you...
November 1, 2012 at 10:07 am
Wow I have no idea why I put that plus in my code. :blush:
Definitely don't need it.
select * from #ITEM where item_desc like @search
November 1, 2012 at 9:49 am
select * from #ITEM where item_desc like + @search
Here is proof:
set @search='cake%'
select * from #ITEM where item_desc like + @search
set @search = '%cake'
select * from #ITEM...
November 1, 2012 at 9:11 am
From your description it is very unclear what you are trying to do. Can you post ddl (create table scripts), sample data (insert statements) and desired output based on your...
November 1, 2012 at 8:52 am
ddl, sample data and desired output please. See the first link in my signature.
November 1, 2012 at 7:40 am
tina_cpc (10/31/2012)
Hi,Is there task which will be capable of uploading/storing a file in a database which can be greater than 8000 bytes?
Thanks,
tinac99
Not sure what you mean exactly by task but...
October 31, 2012 at 2:58 pm
Viewing 15 posts - 10,171 through 10,185 (of 15,381 total)