Viewing 15 posts - 5,221 through 5,235 (of 18,926 total)
Sounds about right. Just to be safe try all 3-4 options for the login type. That's how we actually found the "fix".
June 27, 2011 at 2:49 pm
staindromeo1 (6/27/2011)
June 27, 2011 at 11:33 am
avitale (6/27/2011)
Yes correct. There was nothing wrong with the report's main stored proc.
Just to be 100% safe that you were not going to edit all the procs that take that...
June 27, 2011 at 11:04 am
Usually test server have much slower disks. This MAY help a little bit.
http://www.sqlskills.com/blogs/kimberly/post/instant-initialization-what-why-and-how.aspx
June 27, 2011 at 11:03 am
Just to be clear. You fixed the query that fills the parameter right? Not the proc itself?
June 27, 2011 at 11:00 am
... forgot the pivot :
SELECT
tblName--, RID
, MAX(CASE WHEN dtMx.Colid = 1 THEN ColName
...
June 27, 2011 at 10:58 am
avitale (6/27/2011)
June 27, 2011 at 10:54 am
SELECT
O.Name AS tblName
, C.Name AS ColName
-- build a matrix, needs (X,Y) position
, ( ROW_NUMBER() OVER ( PARTITION BY O.object_id ORDER...
June 27, 2011 at 10:52 am
In the linked server info, add the login admin with a blank password and see if that fixes it (took 3 hours and 4 of us on a pss call...
June 27, 2011 at 10:40 am
So what's different between the runs?
June 27, 2011 at 10:27 am
My point was find a location where it works then change only 1 variable at a time untill it breaks.
You have a server / mdb that works. Awesome.
Only change...
June 27, 2011 at 10:26 am
Copy the code that is passed in profiler and run it in SSMS. Sometimes it just looks similar.
Check if you see any difference between that code and the code...
June 27, 2011 at 10:19 am
My first answer will solve your problem.
June 27, 2011 at 10:12 am
So the old linked server to the old location still works?
Just copy the settings to the new server. If that doesn't work try the admin trick I just told...
June 27, 2011 at 10:11 am
Viewing 15 posts - 5,221 through 5,235 (of 18,926 total)