Viewing 15 posts - 91 through 105 (of 151 total)
John,
I have added linked Server S with report server. Can you please give an example of what would be considered as a fully qualified code.
Also when I write the code...
October 7, 2015 at 8:29 am
Thank you Luis, I will try this tonight and let you know if it works.
October 6, 2015 at 12:40 pm
Does anyone have any ideas or suggestions?
October 6, 2015 at 8:51 am
The following is the step 1 on the job on Server S
SELECT LoanID
FROM ACHWebPayments Where (DraftDate > CONVERT (date, GETDATE()) and exported is null) and (DateRequested > CONVERT (date, GETDATE())...
October 2, 2015 at 10:57 am
It happens to work with FS3 which is FS3(SQL Server 10.50.2550)
Now the problem I am facing is with Security:
Under local login I am putting myself (DMG\abc) should I check impersonate...
September 30, 2015 at 3:47 pm
Thank you guys. I tried the GUI way SSMS and get the following error when I click ok:
--> SQL server native client 11.0 doesnot support connections to SQL server 2000...
September 30, 2015 at 3:11 pm
Thanks , yes you are right when I ran the following query on DSQL it only listed itself, there was no FS1 or FS3
SELECT * FROM sysservers
I have never added...
September 30, 2015 at 2:26 pm
I ran the following under DSQL master:
EXEC ('select 1') AT FS1
still getting exactly the same error:
Msg 7202, Level 11, State 2, Line 1
Could not find server 'FS10' in sys.servers. Verify...
September 30, 2015 at 2:01 pm
Yes there are approx. 200 records where Berry needs to be replaced with Larry.
September 28, 2015 at 3:48 pm
I apologize I didn't mean any disrespect. I think I finally got it, you are right there was no need for me to join the same table again.
Again thanks for...
September 22, 2015 at 3:11 pm
Luis, still doesn't work,
lets take this example and make it simpler; consider the following code:
WITH History_CTE
AS
(
SELECT loanID, HistoryCounter
,ROW_NUMBER() OVER (PARTITION BY LoanID ORDER BY HistoryCounter) AS [Dense Rank]
FROM History
WHERE TransactionAmt...
September 22, 2015 at 2:20 pm
thanks again,
the reason for CTE is because I only want to display loans where there HistoryCounter has a dense rank of 1.
According to you if I use the following in...
September 22, 2015 at 11:39 am
Thanks Zartin
I did the following, rest kept the same, I am guessing my select statement is still wrong,please advise
Select
,(Select H1.[Dense Rank] from H1 WHERE [Dense Rank] = 1)
JOIN
LEFT OUTER JOIN...
September 22, 2015 at 10:47 am
Viewing 15 posts - 91 through 105 (of 151 total)