Viewing 15 posts - 6,091 through 6,105 (of 8,753 total)
Jeff Moden (2/27/2015)
Lynn Pettis (2/27/2015)
ZERO DAY! Leaving Afghanistan!Going Dark!
Zero bottles of beer on the wall.
Zero bottles of beer!
For those that roam,
Just come on home,
To one hundred bottles...
February 28, 2015 at 5:05 am
Quick thought, check that the DB2 ODBC drivers are installed on the server running the SSIS and that they match the architecture of the SSIS package execution.
😎
February 28, 2015 at 4:59 am
Just a hunch, suspect cached temp table might cause this.
😎
February 28, 2015 at 4:32 am
Quick point, run this query on the existing server to list the enterprise features in use
😎
SELECT
PF.feature_id
,PF.feature_name
FROM sys.dm_db_persisted_sku_features PF;
February 28, 2015 at 2:36 am
Hi and welcome to the forum!
There are several ways of achieving this, here is one example of a cross-tab type solution, should get you passed this hurdle.
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE...
February 28, 2015 at 2:25 am
Alternative solution which is more efficient but behaves slightly differently as it will bring back messages from both tables if they exist.
😎
SELECT
CM.message
FROM @compMessage...
February 28, 2015 at 1:32 am
petemill66 (2/27/2015)
February 28, 2015 at 12:12 am
roderickdelatorre (2/27/2015)
Hi,Need you assistance.
script level upgrade for database master failed because upgrade step 'sqlagent1000_msdb_upgrade.sql'
encountered error 5833, state 1, severity 16.
Thanks,
Rick
😎
February 28, 2015 at 12:01 am
Further on Jeff's fine solution, you may want to consider converting the column from (var)character data type to date data type. Not only does it take less storage (3 bytes),...
February 27, 2015 at 11:51 pm
Grant Fritchey (2/27/2015)
Assuming the Threadizens are aware of this since you're a giant bunch of nerds, but...Spock is dead.
Leonard Nimoy passed away today.
RIP
\\//,
😎
February 27, 2015 at 2:05 pm
Jeff Moden (2/26/2015)
February 27, 2015 at 1:47 am
The same way as any other download, the client initiates the download by clicking a link/button and the source of the file is the output of the stored procedure. Alternatively...
February 26, 2015 at 11:50 pm
MaggieW (2/26/2015)
I need to write a stored procedure or SSIS to export data to client's desktop. What is the best way to achieve it?
The requirement is to develop a...
February 26, 2015 at 11:05 pm
Viewing 15 posts - 6,091 through 6,105 (of 8,753 total)