Viewing 15 posts - 11,416 through 11,430 (of 26,486 total)
lawson2305 (6/9/2012)
June 9, 2012 at 11:03 am
The ANSI-89 style outer joins were depreciated and is no longer supported in SQL Server 2005 and later. For OUTER JOINS you need to use the ANSI-92 Style.
This would...
June 9, 2012 at 10:53 am
I hope you have a good backup. That is the the best way to recover your database.
June 9, 2012 at 10:51 am
Sean Lange (6/8/2012)
Stefan Krzywicki (6/8/2012)
June 8, 2012 at 4:32 pm
thadeushuck (6/8/2012)
create table Zips (Zip int, City [varchar](36) null, StateCode [varchar](2) NULL, County [varchar](36) null)insert into Zips values (75056, 'Dallas', 'TX', 'Dallas');
insert into Zips values (75057, 'Irving', 'TX', 'Dallas');
insert into...
June 8, 2012 at 4:30 pm
thadeushuck (6/8/2012)
create table Zips (Zip int, City [varchar](36) null, StateCode [varchar](2) NULL, County [varchar](36) null)insert into Zips values (75056, 'Dallas', 'TX', 'Dallas');
insert into Zips values (75057, 'Irving', 'TX', 'Dallas');
insert into...
June 8, 2012 at 4:02 pm
Sounds to me like the someone needs to verify that the webservice is actually doing something with the value being returned. Perhaps a little debugging session on the wbservice...
June 8, 2012 at 3:57 pm
Also, this looks like an estimated execution plan, the actual execution plan would be much more helpful.
June 8, 2012 at 3:53 pm
Drop the NOLOCK hints, they will be ignored anyway as this is an UPDATE.
June 8, 2012 at 3:51 pm
Glad to be able to help.
June 8, 2012 at 3:08 pm
First, please pay close attention to how I created the tables and sample data. This is what you should do when asking questions instead of relying on us to...
June 8, 2012 at 2:42 pm
Evil Kraig F (6/8/2012)
Lynn Pettis (6/8/2012)
OP: I don't want a union. How do I put these two queries together?
Me: Looks like you need...
June 8, 2012 at 2:27 pm
You have to be kidding me.
OP: I don't want a union. How do I put these two queries together?
Me: Looks like you need a join.
OP: Yes, how...
June 8, 2012 at 1:57 pm
krypto69 (6/8/2012)
Hi Lynn,Thanks for your reply.
Yep, join sure sounds like what I need.
How would I go about that type of join?
Make the second query a CTE, then join it...
June 8, 2012 at 1:54 pm
SueTons (6/8/2012)
Find below the details.
Requirement: create SP to validate...
June 8, 2012 at 1:42 pm
Viewing 15 posts - 11,416 through 11,430 (of 26,486 total)