Viewing 15 posts - 61 through 75 (of 242 total)
I agreed with Ashok. 🙂 Better to use Toggle property, It'll increase performance as well because report will not render again.
But in case of Sub Report, when you click on...
February 20, 2009 at 2:38 am
Its a simple expression of SSRS and you can use it in ReportItem (TextBox).
February 17, 2009 at 4:39 am
Yes... If you give the correct path in command.
February 10, 2009 at 12:29 am
melvin.prasath (2/9/2009)
dtexec /SQL "\SSIS_TEST" /SERVER %Server% /USER %User% /PASSWORD %Password% /MAXCONCURRENT " -1 " /CHECKPOINTING OFF /REPORTING V /CONSOLELOG NMT >> %log%
Try This:
dtexec /FILE "PackagePath" /CONFIGFILE "ConfigFilePath"...
February 9, 2009 at 6:41 am
I think the best way would be having function in code window:
Public Function Total(FirstN as object, SecondN as object, ThirdN as object) As Object
Total = FirstN +...
February 5, 2009 at 12:46 am
Hi Seenu,
Try this query and modify accordingly
SELECT COUNT(*),type_desc FROM sys.objects
GROUP BY type_desc
February 4, 2009 at 11:58 pm
Pavan,
You can try these links:
http://www.programmersedge.com/?p=56
http://vyaskn.tripod.com/sql_server_2005_making_ssis_packages_portable.htm
Never forget to set ConnectionString property of your Connection Manager with package variables.
February 2, 2009 at 2:12 am
Jon,
May be you are trying to store data out of range because size for productID_PK is Numeric(1,0).
Try This example:
--------------------------------
Declare @N Numeric(1,0)
SET @N = 10
Select @N as Number
You will get below...
February 2, 2009 at 1:59 am
sar_kan25 (2/2/2009)
For first five rows I want to add some common feature and select
For next five rows I want to add some another...
February 2, 2009 at 1:52 am
Keith DuAime (1/30/2009)
January 30, 2009 at 6:29 am
Try This:
CREATE TABLE #A (ID int)
CREATE TABLE #B (ID int, Code varchar(10))
INSERT INTO #A SELECT 1 UNION SELECT 2
INSERT INTO #B
SELECT 1,'abc' UNION SELECT 1,'def' UNION
SELECT 2,'pqr' UNION SELECT 2,'lmn'...
January 30, 2009 at 6:19 am
I believe you can do it very easily without two loops.
Just give some sample data along with O/P required.
January 30, 2009 at 5:50 am
Dugi (1/30/2009)
Yea this is true!I cannot see any results from Hari's T-SQL, everything is empty! 😛
Keep Smiling...
Anyway, This should work:
EXEC sp_depends @objname = N'TableName'
January 30, 2009 at 3:07 am
Girish,
I believe that you can go for COALESCE function.
January 30, 2009 at 1:04 am
And if you want to use T-SQL command then use sql_dependencies
SELECTTOP 10 * From sys.sql_dependencies
WHERE [OBJECT_ID]= OBJECT_ID(N'ObjectName')
January 30, 2009 at 12:47 am
Viewing 15 posts - 61 through 75 (of 242 total)