Viewing 15 posts - 61 through 75 (of 359 total)
guess its going to take you a long time then
***The first step is always the hardest *******
August 1, 2018 at 5:53 am
if your performance tuning instead of using profiler, run your SP in SSMS and look at the execution plan.
***The first step is always the hardest *******
July 26, 2018 at 6:44 am
try using the wizard in SSMS, connect to Server, RMC on database, select Tasks, select generate scripts
***The first step is always the hardest *******
July 26, 2018 at 6:40 am
are you using nolock hint, read uncommitted isolation?
***The first step is always the hardest *******
July 19, 2018 at 2:10 pm
select upper (substring(col,0,patindex('%[0-9]%',col))+' '+substring(col,patindex('%[0-9]%',@col,99))
from your table
***The first step is always the hardest *******
July 18, 2018 at 7:33 am
could you post the indexes and execution plan?
***The first step is always the hardest *******
July 18, 2018 at 1:22 am
there are many ways to achieve what you are asking as you can see from your research, before anyone could help we would require some more information around the process. ***The first step is always the hardest *******
July 18, 2018 at 1:09 am
with cte as
(select count(UUT_SN) as Total_Fail,Fail_Description,Station_No from Muscatel_MPCA_FCT1_LogData_T
WHERE SQLDateTime >= '2018-07-01'
AND SQLDateTime <= '2018-07-13 'AND Station_No in (19,20,21,22,23,24)and Fail_Description NOT LIKE '%[PASS]%'
group...
***The first step is always the hardest *******
July 17, 2018 at 2:28 am
can you post what you have done so far
***The first step is always the hardest *******
July 16, 2018 at 6:21 am
should also added, what i'm thinking is that your update could be part of a nested transaction, even though you have issued a commit no data has been committed and...
***The first step is always the hardest *******
July 13, 2018 at 5:50 am
can you consistently replicate this issue by running the same SQL?
prior to issuing commit open a new session and run ***The first step is always the hardest *******
select * from sys.sysprocesses
where spid=add spid
July 13, 2018 at 5:18 am
you could try this
SELECT name AS schema_name,USER_NAME(principal_id) AS owner_name
FROM sys.schemas
***The first step is always the hardest *******
July 12, 2018 at 6:27 am
select user_name(objectproperty(object_id,'OwnerId')), * from sys.objects
where user_name(objectproperty(object_id,'OwnerId'))=' user here'
***The first step is always the hardest *******
July 12, 2018 at 2:59 am
***The first step is always the hardest *******
July 10, 2018 at 4:10 am
***The first step is always the hardest *******
July 9, 2018 at 5:28 am
Viewing 15 posts - 61 through 75 (of 359 total)