Viewing 15 posts - 26,161 through 26,175 (of 26,484 total)
IIS needs to be installed on the same system that you install Reporting Services.
March 27, 2007 at 4:12 pm
Two questions come to mind. First, when you say there is a 30 second delay, are you saying it takes 30 seconds for query window to return from executing xp_cmdshell? ...
March 27, 2007 at 3:40 pm
It may not be blocked, but if there are a lot of locks issued, the Current Activity screen can hang and eventually timeout.
March 27, 2007 at 3:36 pm
Load the new file into a temp table, then use a query to select the data that needs to be loaded based on the primary key of the data.
March 27, 2007 at 12:12 pm
The only time I would not use aliases for column names is in queries selecting from a single table. Once you start joining tables, it makes sense to alias the...
March 27, 2007 at 12:08 pm
Best suggestion I can give, and that I have seen from others on this site, is test, test, and test some more. You will find that some times the EXISTS...
March 26, 2007 at 1:17 pm
You can use it, it just won't return a sorted result set if the order by is included in the view declaration. A view is a table and SQL (not...
March 26, 2007 at 12:59 pm
The TS stands for Technology Specialist and PRO for Professional.
hth.
March 26, 2007 at 7:02 am
I have used EXISTS in queries, but I have found that in many cases an inner join actually worked better than the EXISTS. It really depends on the queries you...
March 23, 2007 at 9:24 pm
Best way to think about it is this: It acts like a cursor, and you have them nested, each of the 600K rows has the potential of running through all...
March 23, 2007 at 3:34 pm
It would help to see the DDL for the table(s) and what you have currently tried to do to solve your problem so far. There really isn't enough information in...
March 22, 2007 at 6:02 am
Not sure, it has been a while since I had this issue, but you may need to reinstall the client tools on the server. I had this happen at a...
March 21, 2007 at 7:09 am
And hopefully, this is also followed immediately with a full backup.
March 21, 2007 at 7:06 am
Try this query:
select
*
from
dbo.tblCandidates
where
(@Candidate = 0) or
(ID_Kandidat = @CandidateID)
![]()
March 21, 2007 at 6:30 am
As these databases are on your development PC, the first thing I would do is change the recover mode from full to simple. This will allow SQL Server to truncate...
March 19, 2007 at 9:42 am
Viewing 15 posts - 26,161 through 26,175 (of 26,484 total)