Viewing 15 posts - 106 through 120 (of 147 total)
This may point you in the right direction:
First the stored procedure I created for testing this which accepts @MyParameter as nvarchar(max) type.
IF OBJECT_ID('MH_TEST') IS NOT NULL
...
February 11, 2014 at 6:37 am
Could you not run this as a job and in the job steps advanced tab select "Output File" and specify that way?
February 10, 2014 at 9:28 am
Also the Begin is missing after AS at the start 🙂
February 10, 2014 at 1:34 am
February 7, 2014 at 7:17 am
What have you tried so far? What version of SQL Server are you using?
A quick google search threw up this
February 7, 2014 at 7:16 am
Would something like the below do the trick
UPDATE dbo.Table2
SET found = 'OK'
FROM dbo.Table2 t2
INNER...
February 3, 2014 at 4:01 am
See attached image for how we do it (1):
Script task to create the actual commands we want to run. (2)
Output the content of variable to a text file (3)
Run your...
February 3, 2014 at 3:58 am
Probably not the most elegant of solutions however when we used BCP to export data with leading and trailing zeros we converted depending on which way we were going.
DECLARE @something...
January 21, 2014 at 7:08 am
Can you not re-create the folder and then re-deploy the relevant reports?
Failing that, whilst I have never tried this I did come across this from Google
http://stackoverflow.com/questions/914370/where-does-a-published-rdl-file-sit
It may be...
January 21, 2014 at 6:30 am
[schema_name] is too small to handle what you are trying to put into it. I increased to size to 128 and it worked.
http://technet.microsoft.com/en-us/library/ms191240(v=sql.105).aspx
(Sysname datatype)
January 21, 2014 at 4:28 am
This is by far not the best bit of coding as I broke to problem down into stages to build the final result. I did have to change your...
December 20, 2013 at 6:53 am
You could also create a function to do it:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE FUNCTION [dbo].[fnSplitList]
(
@sInputList VARCHAR(8000),
...
December 19, 2013 at 6:41 am
could really do with some sample data to fully understand how it comes through
December 19, 2013 at 6:34 am
What does your data look like coming into the report as this will depend on how it can be done
December 19, 2013 at 4:34 am
Viewing 15 posts - 106 through 120 (of 147 total)