Viewing 15 posts - 31 through 45 (of 236 total)
The execution plans for those are substantially the same, with the exception that the "filter" step runs faster in my version (but the index scan runs faster in yours). I...
July 17, 2012 at 4:20 pm
I got it backwards, you just needed to wait for my edit. Happens to the best of us, which is proven by the fact that it happened to me 🙂
You...
July 17, 2012 at 2:29 pm
A proper stored proc with an if-else block is the better way - this way each query can be optimized separately, and since pulling the whole table is way different...
July 17, 2012 at 2:04 pm
mpdillon (7/13/2012)
Do you think if the file is found by the stored procedure that the SQL user would also have access to the file? I...
July 13, 2012 at 9:57 am
OK I'm glad you got it working, but please keep in mind that Windows 7 has file-level permissions as well. When you create a folder and set up some access...
July 13, 2012 at 9:23 am
You need to give us some more clear rules. Why is searching for a 2 adult room any different from searching for a 3 adult room? I don't follow the...
July 12, 2012 at 4:16 pm
Looks like a permissions issue to me. It's not telling you the file doesn't exist, it's saying it can't be read. That either means it doesn't have permission, the file...
July 12, 2012 at 3:55 pm
Well, I don't know that level of detail unfortunately. What I suspect will happen is they will just deal with what I give them. The camera images are critical (just...
July 12, 2012 at 3:49 pm
Lynn Pettis (7/12/2012)
July 12, 2012 at 3:38 pm
David Lester (7/12/2012)
July 12, 2012 at 11:41 am
Hehe... it was still fresh in my mind. Sometimes the spammers deserve a response too. When they are wrong...
September 13, 2010 at 11:06 am
zenchew (9/13/2010) I know a site which provide all IT Certifications with 100% pass surety.
That is exactly the problem with the certifications - since not everyone is cut out to...
September 13, 2010 at 9:37 am
LSAdvantage (8/31/2010)
roger.plowman (8/31/2010)
August 31, 2010 at 2:31 pm
I was interested to know what this actually does in SQL 2008...
So I created this...
drop procedure dbo.USR_TEST_SEARCH
GO
create procedure dbo.USR_TEST_SEARCH
@fname_search varchar(40) = null,
@lname_search varchar(40) = null
as
select FIRST_NAME, LAST_NAME, MASTER_CUSTOMER_ID
from dbo.CUSTOMER
where...
August 31, 2010 at 1:08 pm
Brannon Weigel (8/31/2010)
August 31, 2010 at 9:34 am
Viewing 15 posts - 31 through 45 (of 236 total)