Viewing 12 posts - 1 through 12 (of 12 total)
MSDN States 50 and 16: http://msdn.microsoft.com/en-us/library/cc645993.aspx
May 18, 2009 at 8:13 am
Yes,
That is what I was thinking and the blog from David does a good job of demonstrating the web service call. Another option would be an SSIS package...
May 1, 2009 at 8:45 am
Is CLR an option in your environment? if so, check out: http://davidhayden.com/blog/dave/archive/2006/04/25/2924.aspx and see if that helps.
April 28, 2009 at 10:35 am
What are you trying to accomplish? You can create DDL Triggers (SQL 2008: http://msdn.microsoft.com/en-us/library/ms186406.aspx and SQL 2005: http://msdn.microsoft.com/en-us/library/ms186406(SQL.90).aspx).
April 28, 2009 at 10:28 am
kwood111 (4/14/2009)
ghollis - the code you posted worked perfectly!Thank you SOOOO much - I really appreciate it.
q-kev
My pleasure, glad to hear it work for you.
Have a great day,
Gary
April 14, 2009 at 11:11 am
Try the Following:
Test code:
declare @t as Varchar(25) = 'E8800'
declare @s-2 as Varchar(25) = 'E8489'
select 'YES' where
(@t between 'E8800' and 'E8889' )
AND NOT (@S between 'E8490' and...
April 14, 2009 at 8:31 am
Wouldn't using Top 25 WITH TIES accomplish the same thing, rather than using the CTE (assuming they are using the group by and order by clauses without the SalesCategory...
March 19, 2009 at 9:31 am
I agree with the previous comment that even with a group by, top 25, and order by, you are not going to get what the question asked for as the...
March 18, 2009 at 8:13 am
"You need to apply/re-apply SP2 to your reporting services installation
since the ReportServer database you are pointing to is at an SP2 level
(C.0.8.54) whereas the Reporting...
February 23, 2009 at 3:05 pm
The link provided in the answer states, "When SQL Server clients request SQL Server resources, the client network library sends a UDP message to the server using port 1434. SQL...
November 25, 2008 at 7:28 am
Viewing 12 posts - 1 through 12 (of 12 total)