Search results for "title"

Your search for "title" returned 100 results:

Technical Article

Dimension Attribute Name Column

  • Topic

I am new to data warehousing and SSAS, so forgive me if the answer is kicking me in the face. I am attempting to create a cube from a relational data source and one of my dimensions is giving me a headache over the namecolumn property of one of my attributes. The abbridged data source […]

You rated this post out of 5. Change rating

2008-07-28

106 reads

Technical Article

Could not connect to the report server http://localhost/reportserver

  • Topic

I currently have SQL2k8 R2 Reporting services on client machine (Windows 7). I created and deployed reports on this machine. Everything works perfect. I need to move everything to Server machine (W2k8 R2). I installed SQL2k8 R2 and copied the solution have that I have on client machine. I can open rdl files on server […]

You rated this post out of 5. Change rating

2013-03-21

5,908 reads

Technical Article

Could not deploy the reports on the report server

  • Topic

Hi, I need help to deploy the reports on report server. I have the following below given error. TITLE: Microsoft SQL Server Report Designer ------------------------------ Could not connect to the report server http://localhost/ReportServer. Verify that the TargetServerURL is valid and that you have the correct permissions to connect to the report server. ------------------------------ System.Web.Services.Protocols.SoapException: The […]

You rated this post out of 5. Change rating

2012-06-05

4,804 reads

Technical Article

Please tell me the reason for this error!!

  • Topic

Hi, I have one SSIS packages, everything is fine, but I just want to find what is the reason for the below error. Earlier to this error I added one filtercondition in the sql command. please find the details as below. Thanks in advance, Prabhu

You rated this post out of 5. Change rating

2014-08-18

3,157 reads

Technical Article

Selecting parts of a string

  • Topic

Hi, I need some help with a function - well 3 actually - to pull out the require parts of a string.  I have a field called strFiDesc_FD that contains customer names in the format "LastName FirstName Title" all separated by a space.  I can work out how to get the LastName and FirstName, but […]

You rated this post out of 5. Change rating

2006-03-04

27 reads

Technical Article

upgrade SSIS catalog got an error

  • Topic

I move a SSIS database and other user databases  from SQL server 2017 to a new server 2019. Other databases work fine. SSISDB does not work as expected. I restore the SSIS database and master key, successfully. But When I try to run database upgrade from SSMS by right click SSISDB Database upgrade I got […]

You rated this post out of 5. Change rating

2020-06-29

4,016 reads

Technical Article

ERROR: Cannot show requested dialog

  • Topic

Good afternoon ladies and gentlemen. We recently set up our first SQL2005 test box in house and began slowly restoring old SQL 70 databases to this machine for testing. Everything was working fine as of last week. However, this week I went in to change the compatibility mode on one of the databases and received […]

You rated this post out of 5. Change rating

2006-04-03

2,624 reads

Technical Article

How to write SQL query to find a word in string"

  • Topic

Hi, I am trying to write a SQL statement to find related videos in a video site for a particular video. The TAG terms under a video goes as a query to this SQL statement to find related videos. Following SQL statement returns only the same video (single video) that has the exact tags. How […]

You rated this post out of 5. Change rating

2008-03-20

1,881 reads

Technical Article

How to juxtapose ( pivot horizontally ) Author names, and group by Book title

  • Topic

I have 3 tables - Book, Author, BookAuthorReference A book can have multiple authors, and when I do straight query I get multiple rows per book SELECT <columns> FROM Book b, Author a, BookAuthorReference ba where ba.BookId = b.BookId and ba.AuthorId = a.AuthorId I want to get the results as ONE row per book, and […]

You rated this post out of 5. Change rating

2015-01-10

42 reads

Technical Article

SSMS connecting to SSIS with message Failed to retrieve data for this request. (Microsoft.SqlServer.Management.Sdk.Sfc)

  • Topic

Hi Full message below but basically I have tried all the DCOM things in this article and still no joy https://social.msdn.microsoft.com/Forums/sqlserver/en-US/8833d78b-a4c9-4743-ad0b-a3d17bdd3598/connecting-to-ssis-through-ssms-without-built-in-administrator?forum=sqlsetupandupgrade Using Windows Server 2012 & SQL Server 2012 Enterprise I'm a Domain Admin and SQL sysadmin so not sure what the issue is. Any help greatly appreciated. Rich TITLE: Connect to Server ------------------------------ Cannot […]

You rated this post out of 5. Change rating

2016-03-23

4,246 reads

Blogs

Query deadlock info in Azure SQL DB

By

A couple of weeks ago, a developer came to me and wanted to know...

MSSQL Database Property LastGoodCheckDbTime to Get the Last Successful DBCC CHECKDB on a Database

By

Database Property LastGoodCheckDbTime to Get the Last Successful DBCC CHECKDB on a Database As one...

Dynamic Warehouse & Lakehouse Connections in Microsoft Fabric Data Pipelines

By

When you develop data pipelines in Microsoft Fabric (the Azure Data Factory equivalent in...

Read the latest Blogs

Forums

Baseball Everywhere

By Ryan Booz

Comments posted to this topic are about the item Baseball Everywhere

How to run custom python module on SQL Server?

By yyang5823

I am working on a small test script on SQL server 2022 using python...

Upgrade to SQL2019 from 2012 Query is taking time, Need Query Optimization steps

By ralahari

Upgrade to SQL2019 from 2012 Query is taking time, Need Query Optimization steps and...

Visit the forum

Question of the Day

Sensitivity Ranks

I want to use the ADD SENSITIVITY CLASSIFICATION DDL to mark some columns in my SQL Server 2022 database as PII. Can I use this code?

ADD SENSITIVITY CLASSIFICATION TO dbo.sales.price,
    dbo.sales.discount
WITH (
    LABEL = 'Highly Confidential',
    INFORMATION_TYPE = 'Financial',
    RANK = 'INTERNAL ONLY'
);

See possible answers