Viewing 15 posts - 1,891 through 1,905 (of 6,401 total)
The MS courses, do touch on the basic things.
https://www.microsoft.com/en-gb/learning/exam-70-461.aspx
https://www.microsoft.com/en-gb/learning/exam-70-462.aspx
https://www.microsoft.com/en-gb/learning/exam-70-463.aspx
Take a look at the skills measured areas to see if these are any of the skills you would like to develop...
October 29, 2015 at 6:54 am
Jayanth_Kurup (10/29/2015)
October 29, 2015 at 6:22 am
Maybe they are missing the connect on endpoint permission then if the endpoint is already connected
October 29, 2015 at 6:20 am
Yeah thats all I needed to know.
Firebrand would be my first choice (you will get a heavy discount on their courses with vouchers), failing that QA who also accept vouchers
I...
October 29, 2015 at 6:07 am
From BOL
Requires ALTER permission on the database and CREATE ENDPOINT permission, or membership in the sysadmin fixed server role.
October 29, 2015 at 5:58 am
Ed Wagner (10/29/2015)
anthony.green (10/29/2015)
Ed Wagner (10/28/2015)
Eirikur Eiriksson (10/28/2015)
Jeff Moden (10/28/2015)
Eirikur Eiriksson (10/28/2015)
Ed Wagner (10/28/2015)
Eirikur Eiriksson (10/28/2015)
happygeek (10/28/2015)
nibbleQuark
String
Tension
"Wait-till-last-minute"
(83-code-reviews-in-2-days-on-urgent-project :sick::blink::unsure:)
Ultimate tensile strength (UTS)
Shear
Sheep
Lamb Chops
Minted
October 29, 2015 at 5:44 am
Please don't cross post questions on multiple threads http://www.sqlservercentral.com/Forums/Topic1731492-364-1.aspx#bm1731775
Koen and Phil have given you the solution.
Make copies of your packages.
Open them up in your favorite text editor
Find and Replace the...
October 29, 2015 at 5:43 am
Is it an error or a warning?
You should just be able to skip past it as it should be a warning, as its there as a reminder to sort out...
October 29, 2015 at 5:42 am
Where are you based and what will you mostly be doing, admin, development, bit of both?
October 29, 2015 at 4:51 am
If you have a reversed string in a computed column and then add an index to that column
Your string then looks like nixcba for example.
You can then full text that...
October 29, 2015 at 4:34 am
You need to ensure that you set the Windows firewall to allow the sqlserver.exe process or open up the port that SQL uses.
If your installing a default instance, the port...
October 29, 2015 at 4:30 am
Ah sorry I understand what your doing now.
Your wanting a left sided prefix search which is not possible in full text, only right side eg. "xin*"
My recommendation would be...
October 29, 2015 at 4:15 am
RPO = recovery point objective
Also known as how much data can the company afford to loose before it becomes a problem for the company.
Can you survive with 24 hours of...
October 29, 2015 at 4:08 am
Should do it with a derived select
SELECT
M.[Description]
,A.*
,M.Threshold
,M.[Threshold Direction]
,dev1.[Colour]
ELSE NULL END
FROM [tbl_qd_audit] A
JOIN [tbl_qd_measures] AS M
ON A.[Measure] = M.[Measure]
LEFT JOIN (
SELECT A.Measure,
CASE
WHEN M.[Threshold Direction] = '>' AND A.Value...
October 29, 2015 at 3:47 am
So you need to restrict the case statement to 3 measures not the view?
Can you post the definitions of [tbl_qd_audit] and [tbl_qd_measures] with some sample data and an expected outcome
October 29, 2015 at 3:13 am
Viewing 15 posts - 1,891 through 1,905 (of 6,401 total)