Viewing 15 posts - 5,161 through 5,175 (of 26,490 total)
Here is my take on what you are seeing with the warning in the execution plan for the case sensitive query. You are casting data from a case insensitive...
May 19, 2015 at 11:16 pm
Lynn Pettis (5/19/2015)
SQLRNNR (5/19/2015)
Lynn Pettis (5/19/2015)
Why are people so reluctant to help us help...
May 19, 2015 at 4:07 pm
ramana3327 (5/19/2015)
May 19, 2015 at 4:05 pm
SQLRNNR (5/19/2015)
Lynn Pettis (5/19/2015)
"Really? You can't help me based solely on the brief description and current output of my query?"Why are people so reluctant to help us help them?
Sorry, my...
May 19, 2015 at 3:41 pm
eirk tsomik (5/19/2015)
Here is the sample datasessionKeylocationKeysessionStartsessionEndinstructorKeyFlagcarKeyproductTypeKey
164192NULL2015-07-01 06:00:00.0002015-07-01 08:00:00.00036754NULL1332
164196342015-07-01 09:45:00.0002015-07-01 11:45:00.00013783NULL1332
164195342015-07-01 11:45:00.0002015-07-01 13:45:00.00013783NULL1332
164085132015-07-01 14:00:00.0002015-07-01 16:00:00.00039097NULL1332
164096132015-07-01 16:15:00.0002015-07-01 18:15:00.00039097NULL1332
164133132015-07-01 18:15:00.0002015-07-01 20:15:00.00039097NULL1332
What is the structure of the table? How do I cut/paste/insert...
May 19, 2015 at 3:40 pm
One other question, what version of SQL Server are you running?
May 19, 2015 at 12:32 pm
"Really? You can't help me based solely on the brief description and current output of my query?"
Why are people so reluctant to help us help them?
May 19, 2015 at 12:05 pm
eirk tsomik (5/19/2015)
May 19, 2015 at 12:03 pm
eirk tsomik (5/19/2015)
May 19, 2015 at 11:45 am
eirk tsomik (5/19/2015)
If the session get cancelled I need to get all contiguous sessions that associated wit h the...
May 19, 2015 at 11:25 am
Run the following and post the results:
Select
t1.campo1,
t1.campo2
from
tabla1 t1
join tabla2 t2
...
May 19, 2015 at 10:45 am
DataTherapist (5/19/2015)
If this is 'Newbie', then I'm in trouble as a full time...
May 19, 2015 at 10:36 am
Yep, if you insert the data correctly, both queries work:
create table dbo.ADAssets
(Computername sysname)
insert into dbo.ADAssets
values
(N'AIRLBEOF3565 CNF:4e926e06-6f62-4864-aebd-6311543d'),
(N'AIRLBEOF3565');
select Computername
from dbo.ADAssets
where Computername like
'AIRLBEOF3565%';
select *
from dbo.ADAssets
where Computername in...
May 19, 2015 at 10:21 am
SQLRNNR (5/18/2015)
Looking at an earlier post by the OP, enough info was provided...
May 18, 2015 at 9:51 pm
ramana3327 (5/18/2015)
What could be the reason? Is this could be a bug?
Is rebuild Indexes also requires the...
May 18, 2015 at 3:22 pm
Viewing 15 posts - 5,161 through 5,175 (of 26,490 total)