Viewing 15 posts - 16 through 30 (of 55 total)
Hi, Steve:
Thanks for your response! I tried something like this:
Public Sub Main()
Dts.Variables("fileName").Value = "\\ServerName\FolderName\" + System.IO.Path.GetFileName(Dts.Variables("fileName").Value.ToString())
...
June 16, 2010 at 10:09 am
Thanks for your suggestion, Ed! I actually happened upon a solution that seems to work for me, but I had never heard of the impersonation thing, so I'll definitely look...
June 16, 2010 at 8:47 am
I know this is months late, but I just wanted to say how incredibly helpful this was to me. It's really hard to find actual step-by-step instructions for this sort...
June 11, 2010 at 2:30 pm
Hello:
As an update, I found out that Server1 (the one where the linked server won't work) has Windows Server 2008 installed, while the other two have Windows Server 2003. Has...
March 25, 2010 at 7:35 am
I suspected as much. 🙂 Thanks so much for your help!
March 17, 2010 at 11:37 am
Thanks to you both for responding! Vishal, that worked perfectly--thanks a million! 😀
Just one more formatting question: I have a number of row groups and only one column group. The...
March 17, 2010 at 11:24 am
Holy mother, I think I might have gotten it. I changed David Wiseman's proper case function to this:
CREATE FUNCTION [dbo].[fMisspelling](@Value varchar(255), @Exceptions
varchar(255))
returns varchar(5000)
as
begin
declare @sep char(1)
declare @i int
declare...
June 30, 2009 at 11:03 am
Hi, Lowell:
Thank you--this will save me a lot of typing! I also enjoyed your use of the word "doink" in your comments. 😛 This is very much appreciated!
June 30, 2009 at 10:18 am
Just a last desperate attempt to get some feedback on this issue before I start slogging through all the possible spacing scenarios... :crying:
June 30, 2009 at 9:57 am
Thanks to you both! Just what I needed--I was close, but I was doing CASE WHERE instead of CASE WHEN. D'oh!
Thanks again!:-D
June 29, 2009 at 3:15 pm
Hi, bc:
Thanks for the reply! I was considering that as a last-ditch effort, but here's the problem. We send these addresses out to the post office periodically to be formatted...
June 29, 2009 at 11:14 am
Just in case anyone cares, I ended up finding a T-SQL function to proper case
my fields before they're rendered in my report. I used the function created by
David Wiseman at...
June 29, 2009 at 10:04 am
Thanks to both of you for your replies! This database is actually stored in some weird proprietary platform and the data is imported into SQL Server every week through an...
April 8, 2009 at 9:14 am
Okay, so after wasting an inordinate amount of time on this issue, I finally figured it out:
=Format(CountDistinct(Fields!CardSwipeID.Value)/CountDistinct(Fields!StudentID.Value, "StudentVisits"), "#.###")
...where "StudentVisits" is the name of my dataset. Just in case anyone...
April 7, 2009 at 8:50 am
Viewing 15 posts - 16 through 30 (of 55 total)