Viewing 15 posts - 46 through 60 (of 72 total)
Do you put your system database and user database in the same maintenance plan?
I think you have to separate them into 2 different plans. You can look for this in...
August 18, 2005 at 8:52 pm
how if we put:
select col005 from [Baseball65K24] a where not exists( select 1 from [Baseball65K50] b where a.col005 = b.col007)
would it run faster?
thanks.
Leo
August 18, 2005 at 4:28 am
I guess this is because your procedures are locking each other.
You can try to set the ISOLATION LEVEL or use with(nolock) hint in your select statement.
Leo
July 28, 2005 at 8:01 pm
i got a simple suggestion here.
first, select all new user into a identity temp table. for example,
create table user_temp(
key bigint identity(1, 1),
firstName varchar(50),
emailAddress varchar(100)
)
insert into user_temp...
July 28, 2005 at 4:37 am
Hi,
I am not sure your system is slow in which area.
Have you checked your execution plan for all statements that you are running?
Hm .... did you check whether your indexes...
July 26, 2005 at 7:36 am
what if we change from IN to EXISTS?
SELECT cycleName, framework, toolName, taskName, DATEPART(ww, execDate) AS WW, execDate, execHour,
SUM(CAST(StressTime AS decimal) / 3600) AS MachineHours, targetName
FROM dbo.tbl_execution_time_hourly ETH
WHERE EXISTS
...
July 12, 2005 at 1:36 am
In my opinion, for a 2-tier-architectured application, we should separate the login from your front-tier and end-tier. so, you have different logins for your application.
Reasons are:
1. Increase security control of...
July 6, 2005 at 7:06 pm
i've learned something today.
thanks a lot.
Leo
July 5, 2005 at 10:14 pm
i've learned something today.
thank a lot.
Leo
July 5, 2005 at 10:14 pm
here is the link:
http://www.sqlservercentral.com/columnists/lPeysakhovich/indexcreationguidelines.asp
There is a line of statement as below:
July 5, 2005 at 9:48 pm
hm ... i read something about this somwhere. It says if your first condition match with your first column in your index, it will fasten the speed to build the query...
July 5, 2005 at 7:37 pm
you have to put the column's data type after the column name (but before the IDENTITY keyword)
for example,
alter table alter column mycol int IDENTITY(200, 2)
try and see
Leo
July 5, 2005 at 7:12 pm
what i did was like this:
1. go to sysusers and look for the uid that i want
2. update sysobjects with the uid that i just found for those objects that i want...
July 1, 2005 at 1:51 am
thanks, Gabor.
my previous SQL Server database was > 900GB.
it is a database used by a factory. of course, it needs to be up 24 x 7.
however, my transaction log is...
June 29, 2005 at 9:42 am
Sufian,
u can try this code:
backup log db_name with truncate_only
dbcc shrinkfile (logfile_name, size)
u can truncate the log even when ur database is online.
u can put any parameter for the size. its...
June 29, 2005 at 6:33 am
Viewing 15 posts - 46 through 60 (of 72 total)