Viewing 15 posts - 91 through 105 (of 132 total)
the way the sqlsource works in Visual Studio is you can either write your own sql, or hook in a stored proc. I wrote it, fixed it, and voila,...
December 2, 2009 at 8:21 am
Jeff,
thanks, that was it.
M@
Jeff Moden (12/1/2009)
Not a problem...Change this...
print @sql
... to this...
EXEC (@SQL)
December 2, 2009 at 7:36 am
Tried executing this, but the result set comes back with 0.
ALTER PROCEDURE udsp_CPOChooseFacility
-- Add the parameters for the stored procedure here
@roles varchar(2000)
AS
BEGIN
-- Insert statements for...
December 1, 2009 at 3:10 pm
J-F Bergeron (12/1/2009)
1. Can you try using the statement I've provided you directly in your XML, in the Select statement parameter? Sometimes, you can use...
December 1, 2009 at 2:52 pm
This is the format I need to fit it in:
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:AppDevConnectionString %>"
SelectCommand="select e.entID, e.entShortName, p.enterpriseID from permissions p...
December 1, 2009 at 2:39 pm
yeah, sorry about that. I should probably post this on asp.net instead.
December 1, 2009 at 2:29 pm
I'm actually looking for some advice as well. I designed this really quickly to put out a fire a year or so ago, but what the point of the...
November 24, 2009 at 8:41 am
I get what you mean in the first two articles. To tell the truth, I was looking more for a shove in the right direction as to what to...
November 24, 2009 at 8:37 am
Phil Parkin (5/7/2009)
May 7, 2009 at 10:32 am
Phil Parkin (5/7/2009)
May 7, 2009 at 7:58 am
GSquared (5/1/2009)
So if I understand you correctly, I have two tables:
Table 1 - the holding table for the full file.
Table 2 - the final table that the production data is...
May 4, 2009 at 7:29 am
I had the first in mind, but I had a feeling you were about 5 steps beyond me.
Thanks for the offer, I'd like to try to figure it out, but...
April 30, 2009 at 2:32 pm
GSquared (4/30/2009)
April 30, 2009 at 1:53 pm
think I just answered my own question. Is this the cleanest way of doing it?
select ltr.littrackingid,ltr.versus, lty.litTypeDesc, loc.attnyName, ltr.entryDate, ltr.status, ln.note
from litigationtracking ltr left outer join
litigationType lty on...
April 23, 2009 at 11:35 am
I would love to. Expenses and budgets are close to nada right now. I'll keep the link.
April 20, 2009 at 6:53 am
Viewing 15 posts - 91 through 105 (of 132 total)