Forum Replies Created

Viewing 15 posts - 1,951 through 1,965 (of 2,883 total)

  • 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:

  • Reply To: Object naming

    jonathan.crawford wrote:

    While your assumption of my incompetence probably would save you time somewhere, no, I do not fall in that group of people. Also, bite me.

    Just because there are ways...

  • Reply To: Object naming

    jonathan.crawford wrote:

    Mr. Brian Gale wrote:

    You could use "location" still, but put []'s around it too.  My habit is to put [] around my objects.  Never know when a new version of SQL...

  • Reply To: create new table from two others but have consistent date ranges

    I think my only question here is what do  you consider a "valid" revised start/end dates?  for example, if you had this:

    start              end

    Dec 1,2020...

  • Reply To: Convert VBA function to SQL function

    If I understand that script correctly, you are essentially doing a find and replace with a large list of characters to swap out, correct?  If the character is "aù", you...

  • Reply To: Object naming

    You could use "location" still, but put []'s around it too.  My habit is to put [] around my objects.  Never know when a new version of SQL will add...

  • Reply To: DBCC Integrity Check Error - insufficient system memory in resource pool

    I don't think telling SQL it can use more memory is the way to go when you are possibly having memory pressure already. If I understood you correctly you said...

Viewing 15 posts - 1,951 through 1,965 (of 2,883 total)