Viewing 12 posts - 16 through 27 (of 27 total)
Hi
What version of SQL server are you attempting to run the dtsx package from, and what version of vs studio was the dtsx created in?
May 15, 2009 at 2:50 am
Hi
Within Reporting Services there is a Global variable called [UserId].
You will need to create a report parameter and assign its default value to use the [UserId] global variable. You...
April 20, 2009 at 5:19 am
Hi
Could you provide some more detail such as what information are you wanting to return about the user & what application are you using e.g are you using reporting services.
April 20, 2009 at 4:59 am
Hi
Can you reply with a sample of your code? What application are you writing this in?
Thanks
-Matt
April 10, 2009 at 4:10 am
Hi
My mistake I missed some info out of my previous example.
SELECT T1.ADID, T1.COUNTRY, ISNULL(T1.STATE,'the text you want instead of NULL')
FROM yourtable AS T1
April 10, 2009 at 3:50 am
Hi
If I've understood you correctly, you are wanting to replace a NULL value in a SELECT statement, try using ISNULL, e.g.
SELECT ISNULL( , 'string')
Have a look at IsNull in books...
April 10, 2009 at 3:31 am
Hi
I had a similar scenerio - where files were being created every few seconds.
The solution I used was to create a Windows Service, which utilised FileSystemWatcher component, which watched...
April 8, 2009 at 5:28 am
Hi Jim
Not sure if this fully resolves your problem, but you maybe able to adapt the code.
I've used the following to create a 'pop-up' window in a Reporting Services...
April 6, 2009 at 3:09 am
Hi
You could try using a report subscription to email the report. The subscription will run based on a schedule.
Thanks
-Matt
April 3, 2009 at 4:57 am
Hi
You could try setting defaults on each of your report parameters. Set the default parameter value to '%' , your WHERE clause would then look something like this:
WHERE region...
February 26, 2009 at 4:55 am
Hi
You could try creating a seperate report for each chart, then add these as subreports to a 'parent' report arranging them in the layout you desire.
October 23, 2008 at 5:16 am
Hi
If you are using SQL2005, have a look at the PIVOT function in Books on-line.
June 27, 2008 at 4:55 am
Viewing 12 posts - 16 through 27 (of 27 total)