Viewing 15 posts - 196 through 210 (of 1,479 total)
Thank you for your replies. I appreciate your fast help.
Adi
July 8, 2013 at 7:13 am
This is an intent lock. As you remember the server can have locks on few levels - row lock, page lock and table lock. Think of a situation...
July 2, 2013 at 4:38 am
Another index might help you, but we can't know for sure. It depends on the selectivity of the other columns and on the values that are being used for...
July 2, 2013 at 1:38 am
You really have to give more details about your problem. The way the question is asked, I have no idea what problem you have. Please explain...
July 2, 2013 at 12:50 am
Here is one more way:
create table Demo (Col1 varchar(10))
go
insert into Demo(Col1) values ('123453'),('124344ME'),('123453'),('124344ME'),('323390'),('3233MS')
select Col1, substring(Col1,1, CASE WHEN Col1 like '%[aA-zZ]' THEN len(Col1)-2 else len(Col1) end)
from Demo
July 1, 2013 at 9:15 am
You could check the file's size and according to the size decide if it should be cycled or not. Take into consideration that you'll need to work with xp_cmdshell...
July 1, 2013 at 8:36 am
This is your first query:
select count(Call_status_flag) Total from Table1
where '2013-06-22 00:00:00.000'>='2013-06-22 00:00:00.000' and Call_status_flag='N'
The expected results are 2. The first condition will always be evaluated as true...
June 25, 2013 at 8:06 am
You second SQL Statement should produce an error because you don't compare the date to anything. If it is a mistake, pleas rewrite your question and this time write...
June 25, 2013 at 6:15 am
The question should be posted in a different forum, because it has nothing to do with Integration services. As for your questions:
1) You can configure each...
June 25, 2013 at 4:13 am
I'm not sure that I understood what you want. If all you want is to concatenate the results of the results of both case statements into one column, then...
June 18, 2013 at 6:33 am
You can do it with substring and charindex functions:
select substring(ename,charindex(':',ename)+1,len(ename)) from emp
Adi
June 17, 2013 at 1:47 am
You can't do any and modification in the database without logging. Logging is essential for the database. Without it the server won't be able to rollback any statement....
June 17, 2013 at 1:36 am
You can use the function datediff, which works with 3 parameters – Interval type (minutes, hours, days, etc') Start time and end time. For example
Select datediff(mi,'20130612 10:00:00', '20130612 11:00:00')
Select...
June 12, 2013 at 3:39 am
I admit that I didn't use it yet, but I think that you can use resource governor.
Adi
May 22, 2013 at 6:21 am
You can try to set the option arithabort on in your application when you open the connection. There is also the possibility of changing it on server level, by...
May 14, 2013 at 5:36 am
Viewing 15 posts - 196 through 210 (of 1,479 total)