Forum Replies Created

Viewing 15 posts - 46 through 60 (of 381 total)

  • RE: Query to consolidate data from tables

    How about:

    WITH cteUsersAndSoftware(UserName, Software)

    AS

    (

    SELECT DISTINCT s.User_Domain0 + '\' + s.User_Name0 AS 'UserName',

    (CASE

    WHEN p.DisplayName0 LIKE 'Microsoft Visual Studio% %Ultimate% %2013%' OR ... THEN 'Microsoft Visual Studio Ultimate 2013'

    WHEN p.DisplayName0 LIKE 'Microsoft...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: SSIS(XML) information Extraction!

    Check out Jamie Thomson's blog post:

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Variable for Connection? How to Change file names dynamically?

    jameslauf (2/11/2014)


    I have two different packages I am trying to run. One imports from an excel file the other a .csv file. The files are downloaded every 2 weeks and...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: SSIS and Null values

    I think that the variables cannot contain nulls.

    You could replace your configurations with some value that you aren't going to use (-1, -100000, or some such).

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: SSIS and Null values

    Are the default values that the configuration gives you ones that you could ever picture using? Would you ever use 0, or the date in 1899? If not,...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Filepath from SQL job into Script task

    What does the command line look like in the SQL Server Agent task? Specifically, what is the syntax for the Set values part for the variable?

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: delete files using ssis

    You are going to need to use a script task, if only to get the date last modified.

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: The Optimists

    There was one key phrase in the request for the change that I would like to focus on: "small change." There are rarely any small changes. To...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: SSIS Excel Source Data Correction

    I am going to assume that all "M"s from the Excel source needs to be changed to "F" in the target and all "F"s need to be changed to "M."

    My...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: eliminating comma from a string

    Do you want to remove the comma when moving the data from Oracle to SQL Server or in SQL Server?

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Recommend material discussing SSIS Design Patterns

    winston Smith (4/20/2011)


    I have found a few blogs but nothing very substantial.

    Can you list some of the blogs you have found for a start?

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Log files in SSIS

    See if this helps: http://www.mssqltips.com/tip.asp?tip=1417

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Kannada font is not displaying in Microsoftreportviewer in ubantu OS

    I'm not sure that you are going to get much help here. This sounds like an Ubantu OS issue not a Reporting Services issue.

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: using variable in Execute Process Task

    In order to pass in variables to the Execute Package as arguments for the bcp command, you are going to have an expression in which you build the entire command...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: using variable in Execute SQL task in SSIS

    Did you try:

    declare @action varchar(10);

    set @action = ?

    if @action = 'INSERT'

    Russel Loski, MCSE Business Intelligence, Data Platform

Viewing 15 posts - 46 through 60 (of 381 total)