Viewing 15 posts - 31 through 45 (of 242 total)
ramonaraujop (10/5/2009)
I wrote:
-----------------
BEGIN Tran t1
DROP TABLE T
go
ROLLBACK
GO
----------------
SELECT * FROM T
the Question of the Day was wrong, I guess, so, was completed with...
October 6, 2009 at 4:35 am
I hope you had created a Data Source using this query.
Lets day data source is dsMain.
Now follow the below steps:
1. Pick a new table control
2. Drag and drop required fields...
July 15, 2009 at 3:21 am
jymoorthy (7/15/2009)
CREATE PROC USP_TEST@STARTDATE CHAR(8)
Problem is with Parameter data-type. If you change the parameter from CHAR(8) to datetime, it should work fine.
When I run below query, it gives correct...
July 15, 2009 at 2:17 am
I also agreed. This statement should work fine.
May be problem is there in some other statement.
July 15, 2009 at 2:10 am
You can achieve this by following these steps:
1 Insert a Table Group on Date Field.
2. Check the "Page Break at end" property for this Group.
July 15, 2009 at 12:54 am
Hi Abhijit,
Declare a string variable in the package.
in the Excel Connection Manager, Reference this variable for Directory.
July 13, 2009 at 3:58 am
AS long as there is no dependencies between those tables, you can use same Data Flow Task and apply Parallel Transformation.
But if the tables are dependent, we should avoid this...
July 13, 2009 at 3:35 am
Try to execute the package using following command through command prompt:
"C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\dtexec.exe" /FILE "PackagePath" /CONFIGFILE "ConfigfilePath"
July 1, 2009 at 4:57 am
I had same problem but could not resolve this. I dont think there is any way to hide the parameters at run time. There are some limitations of SSRS.
July 1, 2009 at 4:51 am
Hi Rox,
It would be better to convert your Stored Procedure into a Function, if possible. Then you can use function in WHERE clause.
If you can't convert it into the function...
June 3, 2009 at 2:17 am
Its Better to Rename both the columns instead of doing this stuff.
May 27, 2009 at 2:46 am
Naveen,
Try this:
DECLARE @Output smallint
EXEC @Output = ProcName
SELECT @Output
If @Output value is 0 then SP is executed successfully. If it is less than ZERO then there is an error.
May 6, 2009 at 1:48 am
No,
In that case, you can select the table (don't click on columns, just select table) and set the border color as you wish.
This will resolve your issue.
May 5, 2009 at 11:29 pm
Vikas,
Its also easy to implement. You need to change the expression as mentioned below:
Default = None
Left, Right,Top and Bottom (all)
=IIF(Fields!ID.Value=Previous(Fields!ID.Value),"None","Solid")
Let me know if you have still any problem.
May 4, 2009 at 6:59 am
Viewing 15 posts - 31 through 45 (of 242 total)