Viewing 15 posts - 616 through 630 (of 1,491 total)
An alternative would be be have an XML column in the base table where user defined fields could be placed. This would give you the option to use indexes if...
April 19, 2016 at 7:13 am
Try splitting the MERGE out into its component INSERT, UPDATE and DELETEs.
https://www.mssqltips.com/sqlservertip/3074/use-caution-with-sql-servers-merge-statement/
April 13, 2016 at 6:28 am
I have just done a search and came across:
http://www.doogal.co.uk/AdministrativeAreas.php?district=E09000001
March 30, 2016 at 10:16 am
Your problem is that postcodes are designed to direct mail so postcode districts do not always tie up with geographic areas of administration.
I suspect you are going to need all...
March 30, 2016 at 7:52 am
Your description of what you want does not tie up with your results.
I agree with Sergiy, it is not complicated. Try playing with:
SELECT COALESCE(S1.PERSON, S2.PERSON) AS Person
,COALESCE(S1.STARTDATE, S2.STARTDATE) AS StartDate
,COALESCE(S1.END_DATE,...
March 15, 2016 at 5:25 am
This looks like a rather contrived example for a FULL JOIN to me.
March 14, 2016 at 8:45 am
The OP might like to look at the following article:
https://www.mssqltips.com/sqlservertip/2231/avoid-external-dependencies-in-sql-server-triggers/
March 10, 2016 at 4:09 am
There are plenty of articles on how to use Net Manager and set up an Oracle linked server.
Here is the first one I came across:
http://sqlmag.com/sql-server/connecting-sql-server-and-oracle-using-linked-servers
February 23, 2016 at 11:44 am
From the Windows menu:
Oracle - oraClient...
Configuration and Migration Tools
Net Manager
Then expand:
Oracle Net Configuration
Local
Service Naming
Highlight Service Naming and press the Green plus on the left
February 23, 2016 at 8:51 am
There could be a problem with parameter sniffing or the proc could have been compiled with old stats.
Try putting WITH RECOMPILE at the top of the procedure.
February 22, 2016 at 2:38 pm
Sorry, I have just read this thread again.
I initially saw 12c and assumed you were trying to connect to Oracle.
You also mention mysql so I am now not sure what...
February 22, 2016 at 1:47 pm
I have just had time to look where the Oracle client is.
It is winx64_12102_client.zip, near the bottom of the following page:
February 22, 2016 at 9:44 am
When setting up a linked server to Oracle, I normally install the Oracle client, which can be obtained from the Oracle web site, on the SQL Server Box. (Make sure...
February 22, 2016 at 7:43 am
Try something like:
SELECT DISTINCT
local_net_address
,local_tcp_port
FROM sys.dm_exec_connections
WHERE local_net_address IS NOT NULL;
February 21, 2016 at 6:26 am
Viewing 15 posts - 616 through 630 (of 1,491 total)