Viewing 15 posts - 31 through 45 (of 110 total)
If the url is known to contain non-unicode characters then varchar would be fine, if you are not certain, then you'll have to stick with nvarchar to be sure to...
March 4, 2010 at 2:27 pm
Let me know if I am on the right track with this:
if object_id('tempdb..#customer1') is not null drop table #customer1
if object_id('tempdb..#customer2') is not null drop table #customer2
Create table #customer1 (customerid int...
February 17, 2010 at 2:32 pm
I sure hope there is a better way, mines a pretty inefficient way to do things.
February 17, 2010 at 2:17 pm
Found the following here
Hope it helps...
Common error: The dataset ‘GetReturnValue’ contains a definition for the Field ‘GetReturnValueResponse’. This field is missing from the returned result set from the data...
February 17, 2010 at 2:15 pm
Not being terribly familiar with what you are working on, I'll just take a stab at it.
Could this have something to do with the permissions granted to whatever is running...
February 17, 2010 at 2:05 pm
I've done something similar using a foreach loop going over a recordset, this in turn runs a vb component that sets the value of a SSIS variable that is used...
February 17, 2010 at 2:01 pm
I can't seem to think of a way to do this without the GROUP BY clause, either. I suppose you could build something to do it, but I think you'd...
February 17, 2010 at 9:44 am
Congrats, I'm saving this for future reference for myself. I can't imagine why it wouldn't be documented.
July 30, 2009 at 11:25 am
I'm glad you were able to get it to work.
July 30, 2009 at 8:43 am
Okay I tried a few things that you think would logically work. They didn't. I did come across this page, didn't take time to try it out.
July 29, 2009 at 9:11 am
Hmm, you're right, I just checked. I'd have to do some more searching. Just one more of those things you'd expect would be there that isn't.
July 29, 2009 at 8:27 am
The more I think about this, the more familiar it seems. I have had to find workarounds for a few different things that seemed like they should have been part...
July 28, 2009 at 8:40 am
Amy, I have not run into this issue myself, however I have had some crazy things happen when using rdl files. My suggestion was based on what I could find...
July 27, 2009 at 1:31 pm
It would appear so, at least based on the two situations you asked about so far. If you are curious regarding transactions in general then I would suggest some web...
July 24, 2009 at 9:20 am
Ahh, I see. Thanks.
July 24, 2009 at 9:09 am
Viewing 15 posts - 31 through 45 (of 110 total)