Viewing 15 posts - 91 through 105 (of 108 total)
What are the date types in both databases?
Date you provided might be dirty in business logic, but not for all date types. It is just year 200.
November 12, 2013 at 11:31 pm
Can you post actual execution plans for both clauses.
November 9, 2013 at 7:40 am
RVO (11/4/2013)
A very simple query runs 4 seconds with hard_coded value co_code = '7001'
and it runs
1 minute using parameter.
use proddb6
declare @P_CO_CODE varchar(4)
set @P_CO_CODE...
November 5, 2013 at 11:15 am
razzgor (11/3/2013)
November 3, 2013 at 11:46 am
Hugo Kornelis (11/3/2013)
* The reply by Ville-Pekka is incorrect. I think he is confusing two features. Indexed views is the only feature that works automatically in enterprise but needs hints...
November 3, 2013 at 6:37 am
Actual execution plan would have helped a lot, but here is my shot in the dark.
Spatial indexes work automatically only in enterprise and development editions, so if you have standard...
November 3, 2013 at 2:48 am
jasona.work (9/2/2013)
Second, WTF is going on at MS? First, they go and kill off the Technet subscription, pissing of scads of people of various levels (from consultants who used...
September 2, 2013 at 11:35 pm
declare @table table (categoryid int)
declare @t table(categoryid int,lobid int)
-- added 1,4
insert @t
select 1,2 union all select 2,3 union all select 1,4
-- added 3
insert @table
select 1 union all select 2...
September 1, 2013 at 5:38 am
What is the expected result.
I think this data will not return anything because there is no lobid=4 and you have match for each row.
September 1, 2013 at 3:18 am
If I remember right MySQL has such features. One is able to specify different grants by IP addresses.
August 26, 2013 at 10:57 am
Fal (8/22/2013)
August 23, 2013 at 11:27 am
wolfkillj (8/19/2013)
Stefan Krzywicki (8/19/2013)
Sean Lange (8/19/2013)
Stefan Krzywicki (8/19/2013)
The Dixie Flatline (8/19/2013)
August 19, 2013 at 11:18 am
Minnu (8/16/2013)
Am having a non-cluster index on two columns, but the performance of that tables from my application is too slow, if i change the non-cluster index to cluster index,...
August 16, 2013 at 7:05 am
I think you just need to create table with columns code and location.
create table codeToLocation (code varchar(20), location geography);
After setting up data you just join this table to your query.
August 14, 2013 at 11:31 am
s_osborne2 (8/14/2013)
That depends entirely on what they're doing with them. In my shop all developers have a local copy of SQL Server dev edition installed and there's also a dev...
August 14, 2013 at 11:16 am
Viewing 15 posts - 91 through 105 (of 108 total)