Viewing 15 posts - 31 through 45 (of 72 total)
By the way, do we have any solution to improve performance of CTE in case the category tree has depth > 4?
As I knew, if we use CTE to...
November 7, 2012 at 7:57 pm
Mark-101232 (11/7/2012)
DECLARE @Category TABLE(CategoryID int,ParentCategoryID int, Name nvarchar(1000))
INSERT INTO @Category(CategoryID,ParentCategoryID,Name)
VALUES
(1 , NULL, 'A' ),
(2 ,...
November 7, 2012 at 2:53 am
Jason-299789 (11/7/2012)
http://www.sqlservercentral.com/Forums/Topic1379719-391-1.aspx
The only difference is the source table and column names and...
November 7, 2012 at 2:35 am
Michael Valentine Jones (10/26/2012)
DiverKas (10/26/2012)
October 26, 2012 at 6:40 pm
TheGreenShepherd (10/26/2012)
October 26, 2012 at 12:17 pm
TheGreenShepherd (10/26/2012)
October 26, 2012 at 11:59 am
Michael Valentine Jones (10/26/2012)
October 26, 2012 at 11:52 am
In case, you want to create a new primary key, you should check existing PK and drop it then create a new.
IF EXISTS (SELECT * FROM sys.indexes WHERE object_id...
July 19, 2012 at 9:00 pm
Maybe, the spp causes this error. You can excute the spp in your database directly. I saw that error message here: parameters is not null.
July 18, 2012 at 8:11 pm
In the second package, you must declare the third OELDB connection athought the package doest not use this connection.
This is a disavantage of SSIS 2008 if you use the same...
July 17, 2012 at 1:10 am
I assume that you know how to retrieve value for SSIS variable from a store procedure
1- Create new a store procedure to insert SSIS variable into a table
CREATE PROCEDURE InsertValueFromSSISVariable
@SSISVariable...
June 21, 2012 at 1:40 pm
SQLKnowItAll (6/21/2012)
Dung Dinh (6/21/2012)
But if you send email to outside system (your client,...), I suggest you should use a email service for security purpose.
Can you elaborate on the security concerns?...
June 21, 2012 at 9:16 am
Both are the same. If you only send email in internal system (your team), you could use the sp_send_dbmail. But if you send email to outside system (your client,...), I...
June 21, 2012 at 8:56 am
If you want to receive an output value from a store procedure in SSIS package, you need to select
1- Create a SSIS variable such as MyVariable
2- Drag and drop...
June 21, 2012 at 8:47 am
It's an authentication error. When report runs, it will connect to your database and require username/password. You should verify your data source.
June 21, 2012 at 8:31 am
Viewing 15 posts - 31 through 45 (of 72 total)