Search results for "title"

Your search for "title" returned 100 results:

Technical Article

Connect to Database Engine after installation

  • Topic

Hi everyone, I am a complete noob in SQL but not in programming. I am trying to teach myself to be proficient in SQL but I find that the configuration part is hard to get past before the actual lessons. I just installed MS SQL Server 2008 Management Studio Express from here https://www.microsoft.com/en-ph/download/details.aspx?id=7593. Opening the […]

You rated this post out of 5. Change rating

2015-05-01

2,806 reads

Technical Article

The 'Database storage location' feature is not included in the '64 Bit Standard Edition' SKU

  • Topic

All, I'm working a short-term contract for a client that has SQL Server 2008 running on Windows Server 2008. The client has asked me to make changes to existing cubes and create new cubes. There is no dev/test environment, so I decided to create a new database. My idea was to create a new database […]

You rated this post out of 5. Change rating

2010-12-08

3,388 reads

Technical Article

Using LIKE breaks my openquery

  • Topic

I have an LDAP query that runs perfectly. However, as soon as I introduce a LIKE into the WHERE clause it breaks. The error (Msg 7321, Level 16, State 2, Line 1) seems to be generic rather than to do with my syntax so I'm not sure what is the issue. I have googled and […]

You rated this post out of 5. Change rating

2019-04-09

516 reads

Technical Article

The database is not accessible (ObjectExplorer)

  • Topic

The users within a particular domain group are having trouble accessing all the appropriate databases via their SQL Server Management Studio client. They receive the error message, “The database is not accessible. (Object Explorer). Am I lacking some permissions. All the related databases are in a Multi_User mode, Normal Status. I'm using SQL Server 2005 […]

You rated this post out of 5. Change rating

2008-03-19

46,393 reads

Technical Article

Attempt to retrieve data for object failed - On Local Instance of SQL Server

  • Topic

I am getting this error in SQL Server Express 2017 when trying to script a table out to a new query. I can open it in design mode, run queries and so on but not generate scripts for tables... Attempt to retrieve data for object failed for Server '(LocalDB)\MSSQLLocaDB'. (Microsoft.SqlServer.Smo) Additional Information Invalid Urn filter […]

You rated this post out of 5. Change rating

2020-03-24

5,975 reads

Technical Article

Problem Extracting Data from XML File into Field in SQL Server Table

  • Topic

Hi all, Apologies in advance if I am asking something really obvious but I have an XML file that is provided daily, from which I need to extract the data and import it into a table in SQL Server.  I think the issue I am having is down to namespaces but I don't fully understand […]

You rated this post out of 5. Change rating

2017-07-31

39 reads

Technical Article

Why Derived Table and CTE Over T-SQL ?

  • Topic

Hello Database Experts !! I have to write a query using "AdventureWorks Database" which joins HumanResources.Employee table to the Person.Person table so that you can display the FirstName, LastName, and HireDate columns for each employee and JobTitle along with a count of employees for the title. So, i have written the following query But, i […]

You rated this post out of 5. Change rating

2017-09-01

24 reads

Technical Article

Discussion Forum - table design suggestions

  • Topic

Hi, I am working on this discussion forum, same like this one. I have created two tables - one to store the parent messages, ie., the first message in a thread, and second table to store all the child messages or the replies. This is the table design. ForumParents - threadid, userid, title, message ForumChildren […]

You rated this post out of 5. Change rating

2007-03-09

95 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