Viewing 15 posts - 26,161 through 26,175 (of 26,487 total)
I just reread the licensing for SQL Server 2005. You would need to purchase a per processor license for each processor in the server. If you are looking at a...
March 29, 2007 at 1:46 pm
Try the following:
declare @d1 datetime,
@d2 datetime
set @d1 = cast('2007-01-12 15:01:50.863' as datetime)
set @d2 = cast('18:00:00.000 as datetime)
select datediff(ss, @d2, cast(convert(varchar(12), @d1, 114) as datetime)/3600.0
hth
March 29, 2007 at 1:29 pm
I can't directly answer your question, but I do have a question for you, how many users access the system? You indicate it is low use, so why are you...
March 29, 2007 at 1:17 pm
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
Viewing 15 posts - 26,161 through 26,175 (of 26,487 total)