Viewing 15 posts - 2,491 through 2,505 (of 3,957 total)
Using linked servers (http://msdn.microsoft.com/en-us/library/ms188279.aspx) you should be able to access tables directly given appropriate authorizations.
November 15, 2012 at 8:53 pm
You can try something like this:
SELECT DoctorID, LastName, FirstName
FROM (
UPDATE Doctors
SET NumImpressionsInSearches = NumImpressionsInSearches + 1
OUTPUT INSERTED.*
...
November 15, 2012 at 8:50 pm
changbluesky (7/28/2010)
Does anyone know the source unpivot syntax? I cannot find it from google. Thanks!:-P
The syntax is in this article along with perhaps a better way:
http://www.sqlservercentral.com/articles/CROSS+APPLY+VALUES+UNPIVOT/91234/
November 15, 2012 at 8:44 pm
Ray M (11/15/2012)
No one minds helping, but if you want us to do your job for you,...
November 15, 2012 at 8:42 pm
In addition to MickyT's suggestion, you could do a catch all query or the dynamic SQL method suggested in this article by Gail Shaw:
http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
Watch out for SQL injection if the...
November 15, 2012 at 8:41 pm
Jeff - Working through it now but its pretty deep and I expect it will take me awhile.
Great explanations though!
I'm going to try to see if I can adapt the...
November 15, 2012 at 7:28 pm
Boy! Did that end up being a whole lot messier than I thought it would be when I got started on it!
Nevertheless, here's an alternate solution (I think):
DECLARE @StartDT...
November 15, 2012 at 7:01 pm
I'm not getting exactly the desired results you posted but maybe this will give you a hint.
;WITH CTE AS (
SELECT TOP 1 ID, TEXT1, aDate, TEXT2
...
November 15, 2012 at 6:28 pm
Hari Seldon-821789 (11/15/2012)
November 15, 2012 at 5:30 pm
I have a GenerateCalendar FUNCTION (rewritten by Jeff Moden) that can also be used for this. Thought I'd share it below.
The query using it is pretty simple but the...
November 14, 2012 at 8:51 pm
P74 (11/14/2012)
it didn't quite do the job for some records such as 'STI850-200 ' or '25-53492-22 ' where it drops the first digit...
very close to Lynn's results however.
thanks...
November 14, 2012 at 2:44 am
You can try this. It looks like the results you're after but why you'd want such bizarre results eludes me (enlightnment requested :-)).
SELECT PntKey=ISNULL(PntKey, Cd2PntKey)
,PntQty=CASE...
November 14, 2012 at 2:13 am
Here's another way that seems to work with Lynn's set up data:
SELECT PartNum, RIGHT(PartNum,
LEN(PartNum) + CASE PATINDEX('%[^0-9]%', PartNum)
...
November 14, 2012 at 1:42 am
Here's an article for the recursively challenged exploring rCTEs by example:
http://www.sqlservercentral.com/articles/T-SQL/90955/
Hope it is helpful.
November 13, 2012 at 3:29 am
ChrisM@Work (11/7/2012)
Sony Francis @EY (11/7/2012)
SELECT *
FROM TableA a
LEFT OUTER JOIN TableB b ON a.LoanID = b.LoanID
WHERE b.ColumnA <> 'Y'
When we use INNER JOIN it will consider only commom...
November 7, 2012 at 7:14 am
Viewing 15 posts - 2,491 through 2,505 (of 3,957 total)