Viewing 15 posts - 1,171 through 1,185 (of 3,957 total)
commish13 (11/6/2013)
I'm really new at this, but is there a UI to this article?
It's a virtual or theoretical UI. 😀
The application basically throws up a form that is scattered...
November 6, 2013 at 5:21 pm
quagmired (11/6/2013)
Running the select with conditional comparisons produces the...
November 6, 2013 at 5:19 pm
dratnikova (11/6/2013)
As for me now I prefer to do full testing of all possible combinations...
November 6, 2013 at 5:17 pm
Ed Wagner (11/6/2013)
dwain.c (11/5/2013)
How to Design, Build and Test a Dynamic Search Stored Procedure...
November 6, 2013 at 6:51 am
davoscollective (11/6/2013)
odeddror (11/5/2013)
What aboutexecute [dbo].[Shipment_Tracking] @CustID = 'Apple', @ReferenceNo = null
Will give all record regardless null
Thanks,
Oded Dror
Are you trying to return only records where ReferenceNo IS null?
Imagine this...
November 6, 2013 at 6:49 am
Ed Wagner (11/6/2013)
November 6, 2013 at 6:31 am
rlindstrom 38273 (11/6/2013)
You are correct. I did supply some sample data with expected results in my initial post - is there something else that would help?
Yes please. DDL...
November 6, 2013 at 6:27 am
ChrisM@home (11/6/2013)
Jeff Moden (11/5/2013)
Phil Parkin (11/5/2013)
Dwain does it again - nice article sir!Ditto that! Nicely done, Dwain. Great explanations and revelation of code.
I'll second that - and give credit...
November 6, 2013 at 3:42 am
John Mitchell-245523 (11/6/2013)
I think the danger with that is you end up with something like a catch-all query and you risk having a less than optimal execution plan cached. ...
November 6, 2013 at 3:35 am
a20213 (11/6/2013)
CREATE FUNCTION... November 6, 2013 at 3:32 am
While I don't have time at the moment to craft a full-blown solution for you, I might have a couple of ideas to get you started.
I don't think you're going...
November 5, 2013 at 11:57 pm
Looks like you're missing a couple of single quotes. Maybe this?
declare @name varchar(100)
declare @sql varchar(max)
SET @name = 'Sanjay Whitehouse'
set @sql=
n'SELECT * FROM OPENQUERY (
ADSI,
''SELECT givenname ,
sn,
displayname,
samaccountname,
telephonenumber,
mail,
department,
title
FROM ''LDAP://domainobfuscated
WHERE
objectClass =...
November 5, 2013 at 11:41 pm
First of all, thanks to Steve for fixing the SQL formatting issues in my recently published article:
How to Design, Build and Test a Dynamic Search Stored Procedure [/url]
So I'm chatting...
November 5, 2013 at 11:11 pm
I see you took my advice and reposted to the 2012 forum with the DDL. Good for you!
Now a few questions:
- Can a transaction qualify for the same event...
November 5, 2013 at 10:54 pm
Excellent point Alan - a case that I clearly overlooked and a simple solution to it as well.
November 5, 2013 at 10:42 pm
Viewing 15 posts - 1,171 through 1,185 (of 3,957 total)