Viewing 15 posts - 376 through 390 (of 443 total)
This doesn't work. If you add the following to the list of inserts and try you'll see why:
insert into #t1 select 'travolta', 'carlos'
insert into #t1 select 'sainz', 'john'
March 19, 2009 at 8:47 am
or pass a NULL for the employee parameter and do:
WHERE region = @region and (employee = @employee or @employee is null)
February 27, 2009 at 8:20 am
I don't see the pont in these two in the query above since they will both always evaluate to 0
CASE WHEN DATENAME(dw, @StartDate) != 'Sunday' and DATENAME(dw,...
February 25, 2009 at 7:28 am
Have a look at these:
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldependency_members.aspx
February 25, 2009 at 2:20 am
No problem. I thought the CodeProject article, 'Localization of SSRS Reports' , looked promising. Let us know the direction you go and any further useful resources you find along the...
February 20, 2009 at 1:51 am
This might help:
http://www.letmegooglethatforyou.com?q=localizing+SSRS+reports
February 19, 2009 at 9:40 am
If you mean the TargetServerURL property in Visual Studios project properties dialog then its:
http://servername/ReportServer
February 12, 2009 at 10:02 am
Take a look at this, it may help:
http://www.codeproject.com/KB/database/PassingArraysIntoSPs.aspx
February 11, 2009 at 2:12 am
Amit Lohia (2/4/2009)
Nigel Rutter (2/4/2009)
Amit Lohia (2/4/2009)
This can be done without a loop.Any possibility you could expand on this?
Here is the logic but if you want me to write the...
February 4, 2009 at 9:45 am
Amit Lohia (2/4/2009)
This can be done without a loop.
Any possibility you could expand on this?
February 4, 2009 at 4:19 am
A slight correction :). Having looked at this further it seems that the INFORMATION_SCHEMA.ROUTINES view does not split the procedure definition over more than 1 row it in fact only...
January 29, 2009 at 2:28 am
This still suffers from the same problem, in that the ROUTINE_DEFINITION column is only 4000 characters long. Any stored proc longer than 4000 characters in length is split over two...
January 29, 2009 at 2:14 am
Unfortunately this doesn't quite work, see the explanation in the following article:
http://www.sqlservercentral.com/articles/Stored+Procedure/62975/
January 27, 2009 at 4:22 am
See the link below for a good example of doing an 'UNPIVOT' with SQL 2000
January 6, 2009 at 9:59 am
Viewing 15 posts - 376 through 390 (of 443 total)