Viewing 15 posts - 121 through 135 (of 1,957 total)
It sounds like you just want to exclude rows from the queries where the parameter is null.
December 11, 2015 at 5:29 pm
If it is SSIS as suggested by the title, then just open the script component and set a breakpoint before you run it, then inspect the value in the code.
November 30, 2015 at 11:48 am
rick.servant (11/11/2015)
However, I need to replace the <5 with the Budget comparison as below which is not working yet.
=IIF(Fields!CAT_ACTUAL_BUDGET.Value =...
November 11, 2015 at 3:27 pm
mister.magoo (11/10/2015)
Try this:
= "j a v a s c r i p t : void( w i n d o w.open('http://fsaps01/Reports/Billing Reports/links/ICDQuick','_blank'))"
I was typing on a phone, so couldn't copy/paste...
November 11, 2015 at 1:08 pm
Sorry, no - the forum mangled my post.
I have edited my previous post, just remove the spaces in the words.
November 10, 2015 at 5:21 pm
Try this:
= "j a v a s c r i p t : void( w i n d o w.open('" & URL & "','_blank'))"
November 10, 2015 at 4:38 pm
j-1064772 (11/6/2015)
November 7, 2015 at 4:11 am
The simplest answer for how to convert from RDL to RDLC is: rename.
The content/structure of the file does not change, however the ReportViewer control does not "fetch" data for you,...
November 4, 2015 at 5:22 pm
Have you considered logging the caller from the procedure itself?
Something like this.
use tempdb;
go
/* Create a table to log calls to stored procedures */
create table LogSP (
id int identity(1,1)...
November 2, 2015 at 5:17 pm
It's still there in the latest update - I can't check older versions, sorry.
Microsoft SQL Server Management Studio13.0.600.65
October 23, 2015 at 5:31 pm
sam-433147 (10/22/2015)
OKI see what you mean
but what about xml that exceed the varchar(max)?
I can't make SQL handle XML that large - can you?
The maximum size of an XML data type...
October 22, 2015 at 7:52 am
What specific version and service pack are you on?
October 22, 2015 at 7:40 am
sam-433147 (10/22/2015)
adding it manually is not an optionis there an option to do it with modify or insert command?
By manually, Eirikur may have meant that you will need to convert...
October 22, 2015 at 7:35 am
You just need to include TransactionEffDate in the ORDER BY clause of the Row_number() function.
with cte as
(
select *
, row_number() over(partition by [invoiceNumber], [Group]
...
October 22, 2015 at 7:31 am
exec sp_describe_first_result_set N'select top 10 * from [myTable]'
October 21, 2015 at 5:17 pm
Viewing 15 posts - 121 through 135 (of 1,957 total)