Viewing 15 posts - 241 through 255 (of 335 total)
It merely takes the complexity of the join out from the users. That is unless you create an indexed(materialized) view, than things could speed up potentially.
Tom
January 14, 2004 at 12:13 pm
I don't think it should be a speed issue, it's clearly a good design issue. Creating multiple tables and a view over the top of that, makes the application more...
January 14, 2004 at 9:57 am
I think if you use something like the following a join is not needed.
select client,sum(servicex) as ServiceX,sum(servicey) as ServiceY from
(
select client,case service when 'x' then 1 else 0 end as...
January 14, 2004 at 8:15 am
Is the sqlserver running locally on your machine or just the application. When was the last time you booted the Sql machine. Did a configuration on the network change. full...
January 14, 2004 at 7:56 am
It is a save password checkbox on the link tables selection window.
Tom
January 13, 2004 at 12:50 pm
It's been a while, but I'm pretty sure that when the tables are linked you have the option to store password information with that connection. It's a check-box or something...
January 13, 2004 at 12:49 pm
Is the auto-close dboption set. Sounds like this could be your problem.
Thanks
Tom
January 13, 2004 at 12:45 pm
I would test it to see if that is your problem. Run your update, and then do not shrink your log. Then run the update a second time and compare...
January 13, 2004 at 10:56 am
I did not fully process your original post, what I meant by trailing edge was the RevisionId field.
There's not much else but a clustered index seek that this query could do. Try...
January 13, 2004 at 9:26 am
Is the State field the trailing edge of the index. If it is then that is the behavior that you should expect. Since it is using the front edge of...
January 13, 2004 at 8:38 am
How big is the transaction log on the table before you run the update and then after you run the update. If you regularly are shrinking the transaction log and...
January 13, 2004 at 8:24 am
I would look at dbcc updateusage. This could be the reason the result sets are different.
Tom
January 8, 2004 at 7:55 am
You have to add an N to the front of the variable.
set @varUser_Name = N'Brain Pregler'
set @varPassword = N'beer'
This is from books online:
"Unicode constants are specified with a leading...
December 31, 2003 at 7:10 am
To see a waiting process, I would look at what sid's are blocked.
eg. Select * from sysprocesses where blocked <> 0
The value in the blocked field is which spid...
December 22, 2003 at 2:42 pm
Openquery uses the MSDTC which automatically wraps the statement within a transaction so setting the transaction isolation level will not work. It looks like you are locking yourself out with...
December 17, 2003 at 8:04 am
Viewing 15 posts - 241 through 255 (of 335 total)