Forum Replies Created

Viewing 15 posts - 4,516 through 4,530 (of 11,678 total)

  • RE: Drill Through from ssas to ssrs

    aravula1 (10/7/2013)


    Hi, I tried ReportAction in SSAS and tried to drillthrough to a ssrs report. But my question is how can users use cube in frontend? do we need to...

  • RE: T-SQL

    mister.magoo (10/14/2013)


    In your version of SQL Server, you cannot use the form

    DECLARE @myvar varchar(100) = 'Some Value';

    You have to use two statements, one to DECLARE then a SET.

    DECLARE @SQLQuery VARCHAR(100);

    SET...

  • RE: Online Data Transfer

    You can create an ETL solution using SSIS to truncate the test server and get the latest day from the production server.

    600 tables will be quite some work, but you...

  • RE: SSIS job failure issue

    It seems the Report.exe fails, or at least returns a return code that is not expected.

    Does the package what it is supposed to do? Are the results achieved?

  • RE: ISNUMERIC(varchar)

    Easy one! Thanks.

  • RE: getting SSIS ADO to run with the agent

    If you use DontSaveSensitive, you need to store the username and pasword in a configuration.

  • RE: Flat File Input Field Lengths

    You need to change this in the flat file connection manager (in the advanced properties), not in the flat file source.

  • RE: T-SQL

    One bug that is still in the statement is that you have to cast @ID to string in the concatenation for @TaskOutFile.

    Select @TaskOutFile = 'C:\SSIS' + CONVERT(VARCHAR(10),@ID) + '.html';

    The errors...

  • RE: T-SQL

    sqlserver12345 (10/14/2013)


    ALTER PROCEDURE [dbo].[usp_Names]

    (@ID int)

    AS

    DECLARE @TaskOutFile VARCHAR(255)

    DECLARE @SQLQuery VARCHAR(100) = 'select * from Table where ID=@ID';

    SET @SQLQuery = REPLACE(@SQLQuery,'@ID',@ID);

    Select @TaskOutFile = 'C:\SSIS' +@ID + '.html'

    EXEC sp_makewebtask @outputfile =@TaskOutFile ,...

  • RE: edit SQL tables directly from Excel

    Ed Wagner (10/14/2013)


    I really hope MS never allows Excel to directly edit a SQL Server table - that could end up being a complete disaster for DBAs everywhere.

    +1000

    It's not because...

  • RE: T-SQL

    What if you remove the quotes around @SQLQuery?

    ALTER PROCEDURE [dbo].[usp_Names]

    (@ID int)

    AS

    DECLARE @TaskOutFile VARCHAR(255)

    DECLARE @SQLQuery VARCHAR(100) = 'select * from dbo.Table where ID=@ID';

    SET @SQLQuery = REPLACE(@SQLQuery,'@ID',@ID);

    Select @TaskOutFile = 'C:\' +@ID+...

  • RE: The Case of the Lost Card

    Andy Warren (10/14/2013)


    I'm hoping security will be tougher if top secret stuff going on!

    Most likely.

    A colleague of mine had to do a project at a more top secret client, and...

  • RE: The Case of the Lost Card

    As a consultant I've seen many scenarios.

    In some cases the card the card is only necessary to get in. In other cases you need the card as well to go...

  • RE: Giant Logfiles (ldf) during loading data into a Memory Optimized table

    sql-noob (10/14/2013)


    Jack Corbett (8/26/2013)


    Sean Lange (8/26/2013)


    I would recommend breaking this into batches of 10k rows or so. A single insert with 13 million rows is going to kill...

  • RE: regarding sql query

    p.avinash689 (10/13/2013)


    i have 10 records in sql table . the records contains data as gender with male and female. please reply me with a query that can change male into...

Viewing 15 posts - 4,516 through 4,530 (of 11,678 total)