Forum Replies Created

Viewing 15 posts - 976 through 990 (of 1,246 total)

  • RE: Exporting SSRS Report to Excel with formulaes Preserved

    I am curious what happens to the report once the user enters the information and the calculated column renders? Does this just come back into your database system somehow? It...

    ----------------------------------------------------

  • RE: ssrs 2008 r2 pass paramter value to a sort

    Not sure if you missed it but the sort expression is applied to the table (not the individual columns in case you were thinking that). You set here the column(s)...

    ----------------------------------------------------

  • RE: adding new data to a table

    I have to agree it is helpful to post the DDL create statements for the tables and include sample data in a consumable format

    the number depends on certain word

    This is...

    ----------------------------------------------------

  • RE: SSIS Help with flat text file issues

    It seems there are carriage returns in your data.

    Simply add the following to your stored procedure:

    REPLACE(Address,CHAR(13)+CHAR(10),'')

    +1

    But still as you mentioned "SSIS Help with flat text file issues" suggests that you...

    ----------------------------------------------------

  • RE: Access EXCEL using OPENROWSET

    Have a look at this:

    http://msdn.microsoft.com/en-us/library/ms187569(v=sql.105).aspx

    ----------------------------------------------------

  • RE: Errors in the OLAP storage engine

    Have you tried running a full processing on the cube. That might work in the short term but take a long time if you have billions of rows. I think...

    ----------------------------------------------------

  • RE: reading date/time from xml

    In

    select @DT = start

    from openxml ( @idoc, '/root', 1 )

    with ( start datetime2 'start' )

    Try changing the DATETIME2 portion to DATETIME2(0) to see if keeping the data type consistent...

    ----------------------------------------------------

  • RE: returning values with COUNT less than n

    How did you only pick those items with a count of 1 or 2 in the batch? Did you use a CTE /inner view ?

    Thanks

    ----------------------------------------------------

  • RE: Script to display record side by side

    An example of what I am trying to get.

    guid, 2014-05-10 01:04, 2014-05-10 01:14

    Would the data only be for one specific date? To span it across multiple days it is a...

    ----------------------------------------------------

  • RE: Cursors

    One interesting illustration you can do against SQL Server and Oracle is compare the results of a cursor to a triangular join, on each system. I think we all agree...

    ----------------------------------------------------

  • RE: urgent_Backup_needed

    vasugunda (5/20/2014)

    in between 200 to 250 usd

    vasugunda (5/20/2014)

    no per month

    That would be worth one - two hours per month 🙂

    ----------------------------------------------------

  • RE: SSIS Web Services Task question

    The XML data type is not intended to be comma delimited, it is a different way of structuring data. So you are not able to pass the whole xml data...

    ----------------------------------------------------

  • RE: SSIS not importing all of Excel file

    Just for any one else interested, with an ETL issue like this you can add a Data Viewer to the data flow and see the rows thrown at the destination...

    ----------------------------------------------------

  • RE: SSIS Web Services Task question

    I think you mean to say that you want one variable to hold three values... and pass this to one method on the web service.

    You can pass the values...

    ----------------------------------------------------

  • RE: Change Identity Property in T-SQL

    Where do you see the identity property for a column? I did not see it under sp_columns.

    ----------------------------------------------------

Viewing 15 posts - 976 through 990 (of 1,246 total)