Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: The support homepage carousel is not displaying. We are working toward a resolution.

Setting up a Native Client Alias

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
David_Fergen
Former Employee
Former Employee

Setting up a Native Client Alias

Last Update:

Feb 5, 2021 4:58:07 PM

Updated By:

David_Fergen

Created date:

Sep 10, 2020 2:26:16 PM

Instructions for setting up a Native Client Alias:

The program name is CLICNFG.EXE and is usually under c:\windows\system32 

 

https://sqlandme.com/2011/05/05/create-sql-server-alias-cliconfg-exe/  

 

Enable the TCP/IP on the general tab and then add the individual replicas on the Alias tab. 

 

If you add an alias to force the connection to use TCP, make sure you set the instance name on the end of server name if using a non-default instance. 

 

NOTE: May have to use fully qualified name of SQL Servers. 

 

Here is a query you can use to find out if named pipes is enabled: 

 

SELECT 'Named Pipes' AS [Protocol], iif(value_data = 1, 'Yes', 'No') AS isEnabled 

FROM sys.dm_server_registry 

WHERE registry_key LIKE '%np' AND value_name = 'Enabled' 

UNION 

SELECT 'Shared Memory', iif(value_data = 1, 'Yes', 'No') 

FROM sys.dm_server_registry 

WHERE registry_key LIKE '%sm' AND value_name = 'Enabled' 

UNION 

SELECT 'TCP/IP', iif(value_data = 1, 'Yes', 'No') 

FROM sys.dm_server_registry 

WHERE registry_key LIKE '%tcp' AND value_name = 'Enabled' 
Labels (1)
Version history
Last update:
‎2021-02-05 04:58 PM
Updated by: