Search results for "title"

Your search for "title" returned 100 results:

Technical Article

Problem when i try to Disable Publishing and Distribution

  • Topic

Hi, i have this problem, when i try to disable publishing and distribution server, the wizard present this Error: ************** TITLE: Disable Publishing and Distribution Wizard ------------------------------ SQL Server could not connect to the Distributor, ''. Do you want to disable publishing on '' without removing entries for this Publisher from the distribution database? ------------------------------ […]

You rated this post out of 5. Change rating

2014-04-24

2,467 reads

Technical Article

Problem Saving SIS Import Package Using Import and Export Wizard

  • Topic

I often have to import data from a CSV file into SIS. I have been doing this manually, using the Import and Export Wizard. I would like to save the import package, instead of having to go through the wizard every time. However, whenever I try to save the package using the wizard, I get […]

You rated this post out of 5. Change rating

2013-12-09

300 reads

Technical Article

Upgrade in place error (2017 to 2019) - invalid name space.

  • Topic

Upgrade stops with an invalid namespace error (that was it, no error codes of any kind).  Retry fails.  then hit the Cancel button and the upgrade continued and finished.  This was in the SqEngineCongigAction_upgrade_config_Cpu64 phase.  This was a warning and the finish was all green.  I had uninstalled SSMS and rebooted before the upgrade. I […]

You rated this post out of 5. Change rating

2021-11-29

6,623 reads

Technical Article

Converting XML to varchar(max)

  • Topic

I need to store my xml out put in an varchar(max) field. when i try to convert my xml ("for xml explicit") i am getting the following error. any help will be greatly appreciated. Error: "The FOR XML clause is invalid in views, inline functions, derived tables, and subqueries when they contain a set operator. […]

You rated this post out of 5. Change rating

2009-02-24

2,379 reads

Technical Article

Test connection failed because of error initializing provider. Login failed for

  • Topic

Hi I am trying to create a SSIS package run on a Server Agent job. I have created a user in SSMS that I think has the correct access to the correct databases yet i am getting a login failed in both the job and in the SSIS package in visual studio. Can anyone point […]

You rated this post out of 5. Change rating

2021-08-25

10,450 reads

Technical Article

Search keyword "with" in FullText search using CONTAINSTABLE is ignored and the exact keyword search is not working

  • Topic

I have following data in "title" column. The column "title" is included in my FullText search. I have following data in title column: webcam with laptop webcam with charger webcam and laptop webcam with cable webcam and mouse webcam only webcam laptop and mouse I am searching "webcam with" and using following query: the results […]

You rated this post out of 5. Change rating

2011-07-28

134 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

94 reads

Technical Article

SQL Certification Industry Standard?

  • Topic

I was recently informed that my CV was misleading becasue i put my current job title as SQL server DBA yet i dont have the Microsoft DBA certifcation. The objection made was:If your present employer lets you claim to be a DBA [without being certified] then that is up to them however it is not industry standard and […]

You rated this post out of 5. Change rating

2006-10-19

7 reads

Blogs

Are ABORT_AFTER_WAIT's victims logged?

By

In SQL Server, using the KILL command to terminate a session results in an...

Part 2: The Modern Azure Data Warehouse – ADF and ADLS

By

In today’s data-driven world, having the right tools to manage and process large datasets...

A New Word: Flichtish

By

flichtish – adj. nervously aware how much of your self-image is based on untested...

Read the latest Blogs

Forums

Multiple deadlocks occurring with contentious code

By zoggling

We are seeing multiple frequent deadlocks occurring with the following extract of code, which...

I have few snapshot transactions, now i need to put noloc in all tables.

By rajemessage 14195

I have few snapshot transactions , now my admin has informed me that put...

Kubernetes is Cool, But ...

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Kubernetes is Cool, But ...

Visit the forum

Question of the Day

Multiple Query Trace Flags

I want to enable two trace flags, 4199 and 4137, for a single query. How should I do this:

-- A
SELECT
  a.AddressID
, a.AddressLine1
, a.AddressLine2
, a.City
, a.StateProvinceID
, a.PostalCode
, p.FirstName
, p.LastName
FROM
  Person.Address a
  INNER JOIN person.Person AS p
    ON p.rowguid = a.rowguid
WHERE
  City           = 'SEATTLE'
  AND PostalCode = 98104
OPTION (QUERYTRACEON 4199, 4137);

-- B
SELECT
  a.AddressID
, a.AddressLine1
, a.AddressLine2
, a.City
, a.StateProvinceID
, a.PostalCode
, p.FirstName
, p.LastName
FROM
  Person.Address a
  INNER JOIN person.Person AS p
    ON p.rowguid = a.rowguid
WHERE
  City           = 'SEATTLE'
  AND PostalCode = 98104
OPTION (QUERYTRACEON 4199, QUERYTRACEON 4137);

-- C
SELECT
  a.AddressID
, a.AddressLine1
, a.AddressLine2
, a.City
, a.StateProvinceID
, a.PostalCode
, p.FirstName
, p.LastName
FROM
  Person.Address a
  INNER JOIN person.Person AS p
    ON p.rowguid = a.rowguid
WHERE
  City           = 'SEATTLE'
  AND PostalCode = 98104
OPTION (QUERYTRACEON 4199), (QUERYTRACEON 4137);

See possible answers