Search results for "title"

Your search for "title" returned 100 results:

Technical Article

Format to title case

  • Topic

I need to convert all the columns in a table from upper case to title case. Does anyone know how to do this? I know Access has a format function but I haven't found a way to do this in SQL. Thanks Angela

You rated this post out of 5. Change rating

2003-01-29

1,847 reads

Technical Article

SQL Data puller - good job title?

  • Topic

Hi all! I'm having some trouble finding the correct terminology for the job that I do. Basically, I use sql to pull and organize data for a team of analysts. We are called Data Analysts here, but looking around the job world, that's not really what we do. Dats Puller isn't a popular title with […]

You rated this post out of 5. Change rating

2017-02-02

96 reads

Technical Article

how do I show sub report title on the main report?

  • Topic

I sure hope this makes sense:  I have one main report with three sub reports.  There are three links on the main report to each of the sub reports.  Clicking one of the links will display that sub report within the main report and only one sub report can be displayed at a time.  I […]

You rated this post out of 5. Change rating

2018-08-01

338 reads

Technical Article

Chart Title font-different styles (SSRS)

  • Topic

Just got new request from Management- apply different fonts (size/color) for different Chart Title parts. For example, chart title is "Report Chart Title". Can we show word "Title" in different color and size? There is function button but frankly I have no clue how can I use it in this case? Any help is much […]

You rated this post out of 5. Change rating

2010-08-04

155 reads

Technical Article

Restarting SQL Server Instance from SSMS Error

  • Topic

Just installed a new SQL Server 2014 instance. When I try to restart the sql server instance in SSMS by right-clicking and choosing restart, I get the following error: TITLE: Microsoft SQL Server Management Studio ------------------------------ Unable to restart service MSSQL$SQLSERVER on server SQLSERVER. (mscorlib) ------------------------------ ADDITIONAL INFORMATION: The object invoked has disconnected from its […]

You rated this post out of 5. Change rating

2016-10-14

1,512 reads

Technical Article

Backup/Restore permission

  • Topic

Hi there, I want to dedicate a person (eg. 'BackupManager') who can only performce backup and restore certain databases. At BackupManager's properties I had checked db_backupoperator. When I login using BackupManager and perform backup, at the add backup destination I receieve an error message like below (similarly to restore), Can anyone help? TIA

You rated this post out of 5. Change rating

2008-06-30

8,507 reads

Technical Article

Missing SSISDBBackup.bak

  • Topic

Hello Team, My concern is as followed:I've built a project with SSDT 2015 then I would like to deploy the package it in SSMS 2016. However, the error message was that there was no SSISDB.I went to SSMS2016 to create the catalog (right-clicking - Integration Services Catalog). The error message was: TITLE: Microsoft SQL Server Management […]

You rated this post out of 5. Change rating

2017-05-08

21,113 reads

Blogs

Migrate datetime data to datetimeoffset with AT TIME ZONE

By

I recently reviewed, worked on, and added a similar example to the DATETIMEOFFSET Microsoft...

The Comprehensive Guide to Mastering Your SQL DBA Skills

By

Database administrators (DBAs) are the backbone of data-driven organizations. If you're looking to break...

Friday Basics: Authentication vs. Authorization

By

Another security fundamentals topic is authentication versus authorization. For those who have a clear...

Read the latest Blogs

Forums

The OS returned the error '(null)' while attempting 'DeleteFile' filestream.hdr

By lmarkum

I have a SQL Server 2019 Enterprise Edition on CU 25. It has in-memory...

Take Care

By Grant Fritchey

Comments posted to this topic are about the item Take Care

Performance

By LearningDBA

Experts, I am learning some skills so I can troubleshoot some performance-related issues. I...

Visit the forum

Question of the Day

Two Table Hints

What happens when I run this code:

SELECT
  p.ProductName
, p.ProductCategory
FROM dbo.Product AS p WITH (NOLOCK, TABLOCK);

See possible answers