Forum Replies Created

Viewing 15 posts - 1,921 through 1,935 (of 2,859 total)

  • Reply To: How to get at value?

    My output looks different than yours for sure:

    Untitled

    I ran the following:

    DECLARE @xml XML = '<?xml version="1.0" encoding="utf-8"?>
    <SharedDataSet xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/shareddatasetdefinition">
    <Description />
    <DataSet...
  • Reply To: Encryption Level Problems - Can't Build after Checkout

    As a thought, when you ran dtutil.exe, is %f the FULL path to the file or the relative path?  May want to remove the "/quiet" option and just see what...

  • Reply To: correct placement of comment block

    My preference is before partly because that is what was done before I started and partly because that is my habit from .NET development.

    From a C# side, my opinion is...

  • Reply To: How to get at value?

    We should be able to get that value... I don't get it... I changed the XML to be this:

    DECLARE @xml XML = '<SharedDataSet xmlns:rd="http://schemas.microsoft.com/sqlserver/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/shareddatasetdefinition" >
    ...
  • Reply To: How to get at value?

    Are you using X.VALUE or D.VALUE?  your X.VALUE ones will give you the first result found, the D.VALUE ones will give you one result per row.

    Where I work, we do...

  • Reply To: ETL Tools

    I think that really falls into an "it depends" category.

    Based on your description, SSIS is likely going to be the best tool.  I would advise against a stored procedure only...

  • Reply To: How to get at value?

    What I meant about capital letters is exactly that. Capital letters in the URL.  SQLServer is not the same thing as sqlserver. Notice the capital letters?

     

    Also, did you try running...

  • Reply To: ORDER BY in the OVER clause

    Michael.leach2015 - you should read Mike01's link.  A lot of people (myself included) do not like downloading random files off of a forum to try to help people.

    Drew.Allen did a...

  • Reply To: Application timeout

    Without a bit more information it is impossible to say.

    What does it mean by "stopped allowing connections"?  It could be account lockouts, could be your SQL is not doing authentication...

  • Reply To: How to get at value?

    even with the corrected XML that I put there?

    If you run the query I provided in full, it runs and gives you the results you want.

    I ran this on SQL...

  • Reply To: SQL Data Flow Tool

    I think the tool you are looking for already exists in SQL Server - comments.

    If the code is difficult to understand, it should be commented.

    Failing that, PRINT or SELECT to...

  • Reply To: SQl Server Security

    One option that would allow you to continue to control the databases while not presenting it to the client would be to still own the databases.  Host them yourselves or...

  • Reply To: How to get at value?

    This is what you need to add:

      DBType = x.value('(Query/DataSetParameters/DataSetParameter/rd:DbType)[1]','VARCHAR(MAX)'),
    IsMultiValued = x.value('(Query/DataSetParameters/DataSetParameter/rd:IsMultiValued)[1]','VARCHAR(MAX)')

    Full query:

    DECLARE @xml XML = '<SharedDataSet xmlns:rd="http://schemas.microsoft.com/sqlserver/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/shareddatasetdefinition" >
    ...
  • Reply To: How to get at value?

    for those who want to run this without having to create a table and put the XML into it:

    DECLARE @xml XML = '<SharedDataSet xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2010/01/shareddatasetdefinition">
    <Description...
  • Reply To: :on error exit statement

    Have you tested it?  Have the developers tested it?

    It falls under "it depends", but, similar to working with ROLLBACK or COMMIT on a transaction.  If you have something like this:

Viewing 15 posts - 1,921 through 1,935 (of 2,859 total)