Viewing 15 posts - 136 through 150 (of 180 total)
First you need to improve the select part of your query, also from your query it is difficult to understand to which table the field [Local_Date_Key] belongs.
Can you show...
November 15, 2017 at 8:18 pm
The most appropriate solution is create a custom logon trigger. So I would say there is no appropriate solutions in the provided list...
For example, -mSQLCMD
...
May 28, 2017 at 9:20 pm
Hi,
Will you consider someone who required visa sponsorship?
April 30, 2014 at 10:21 am
What is wrong with this answer?
CREATE NONCLUSTERED INDEX IDX_A ON #temp1(a)
Even though I agree that only order by guarantee the order...
December 1, 2013 at 10:36 pm
Do you consider candidates who required H1B sponsorship?
November 28, 2013 at 12:09 am
In question, you should mention that first 2 steps should be performed on master database.
July 18, 2013 at 12:39 am
I failed my exam (88-986). I think it become more difficult than for SQL Server 2008 but it is only my opinion.
I did it in Berlin. Test center was very...
June 27, 2013 at 12:27 am
Can someone change the date of this question? It is July but should be June! Question from the future )))
June 12, 2013 at 1:53 am
Mike Martin (6/4/2013)
2.Should the report server be on a separate server than the database?
In case of separate servers you will need additional MS SQL Server license.
June 6, 2013 at 7:30 am
Also I found that this index works much better for my query:
create index I3 on dbo.orders(orderType, orderDate) include(orderAmount);
June 6, 2013 at 12:22 am
HowardW (6/5/2013)
GilaMonster (6/4/2013)
That's not a new limit. SQL 2008 R2 standard edition only supported 64GB of memory.
It was new to R2, though, I believe? 2008 allowed the OS limit in...
June 5, 2013 at 5:48 am
After executing both queries many times, sometimes I1 overweight I2 but very rare. Looks like I2 is better, but it goes across with my knowledge.
June 3, 2013 at 5:56 am
I did test in this way:
create table:
create table dbo.orders
(
id int identity,
orderDate datetime,
orderType int,
orderAmount money,
orderDiscount money
);
populate it with data:
declare @i int=0;
while @i<100000
begin
insert dbo.orders(orderDate, orderType, orderAmount, orderDiscount)
values(
DATEADD(mi, -1*ABS(CHECKSUM(NEWID()) % 10000), GETDATE()),
ABS(CHECKSUM(NEWID()) %...
June 3, 2013 at 5:42 am
GilaMonster (6/3/2013)
June 3, 2013 at 3:15 am
Viewing 15 posts - 136 through 150 (of 180 total)