Viewing 15 posts - 46 through 60 (of 113 total)
" the load balancer (an F5 appliance) was configured to do round robin routing amongst 40 web serveres and as such would rarely be able to hit the same server...
November 27, 2007 at 11:41 am
Probably it works well because correct order_id and order information is inserted into the tables. Then SP returns order_id into the code, assigns it to the session variable. At this...
November 26, 2007 at 3:32 pm
"This behaviour is expected when PK-FK constraints are not defined correctly. "
There is no FK actually. There is only PK order_id and SP inserts into this table only to get...
November 26, 2007 at 8:38 am
Hi Beth,
You cannot convert, I had to rewrite everything. It took me two days with testing to finish it and move from SQL Server 2000 to SQL Server 2005....
October 26, 2007 at 2:16 pm
Yes,
I used script task and it worked. Never use ActiveX anymore...
October 26, 2007 at 11:59 am
Yes,
the person who made a table used a clastered index. I would make just one primary key and use three other columns as foreign keys. But he used a combination...
October 8, 2007 at 9:15 am
Andras,
I read that. I run rebuid for the index that was recommended to be rebuilt and it didn't help, it still suggested me to rebuild it in the reports. Index...
October 5, 2007 at 1:04 pm
I just fixed it. I found an answer here http://www.sqlservercentral.com/articles/Advanced+Querying/tamethosestringspart9/637/
SELECT @last_name = REPLACE( @last_name, '''', '''''')
October 3, 2007 at 5:41 pm
Karen,
You are right, I figured it out, that was exactly the case. Thanks!
September 17, 2007 at 8:23 am
I found an answer myself. In the reports use only SQL server user authentication for datasources, never ever Windows because it's so screwed...
August 30, 2007 at 5:33 pm
Thank you very much, everything works wonderfully! I just finished that report!
August 27, 2007 at 9:43 am
Somebody else sent me this. "
The temporary tables are session based, meaning that if you and I run that same report, we will have our own temp tables and...
August 23, 2007 at 8:56 am
So it doesn't answer my question. If I have reporting services and report there that uses a stored procedure that creates a temporary table with the static name let's say...
August 23, 2007 at 8:34 am
Thanks. I'm just worried about time. Would it take more time for the report to run if I replace table variables with temporary tables? Also table variable is local and...
August 22, 2007 at 5:39 pm
This is what our instructor in class and Microsoft say: "re-write them". We also moved dts packages to SQL 2005 and scheduled them. Now some of them fails to run and somebody's...
August 22, 2007 at 3:04 pm
Viewing 15 posts - 46 through 60 (of 113 total)