Viewing 11 posts - 46 through 56 (of 56 total)
You're absolutely right, I wrapped that value in [] and it didn't affect it at all, same error, so would it then be that it doesn't know the schema?
I'm just...
September 11, 2009 at 3:20 pm
I think that your procedure will work, I need to search for partial credit card strings
so perhaps 1234________5678
where the underscore is any character be it with dashes or without dashes.
So...
September 11, 2009 at 2:18 pm
Lowell, I think this might work!
So basically I just modify the @sql variable's text a bit and change the paramater going into the stored procedure to do the searches?
Thanks I'll...
September 11, 2009 at 12:22 pm
Matt, I actually found and tried that script, but it doesn't seem to have the ability to add wildcards, and it also doesn't gracefully handle the poorly formed tables names...
September 11, 2009 at 11:59 am
So I left out some of the details in the hopes someone already has something written for this. I am aware of the resources this is going to take,...
September 11, 2009 at 11:24 am
Perhaps that's what I need, though I might be missing the point on how I'd use it. I need to search through the rows in every column in the...
September 11, 2009 at 11:12 am
Well for anyone that's curious, I figured out what was going on. The vendor had uuencoded the binary data and inserted it into the ntext field. yeah...
September 10, 2009 at 11:56 am
Thanks for your reply, this is a little different I think than dealing with excel outputs, these are actual binary files that from what I can tell the vendor has...
September 8, 2009 at 4:51 pm
I think I have figured out what the problem is, the column called FILEBLOB is of type ntext and when exported, exports as ntext. Is there a way to...
September 8, 2009 at 4:25 pm
Depending on if it is t-sql or ssis there are several ways to handle locking.
The easiest is to use join hints:
select
columna,
columb
from tablename with (NOLOCK)
Keep in mind that this will mean...
April 16, 2009 at 5:40 am
Forgive me, I'm fairly new here but my understanding of AWE suggests that it doesn't affect SQL's ability to limit it's max memory usage. The fact that when you...
January 29, 2009 at 6:14 pm
Viewing 11 posts - 46 through 56 (of 56 total)