Viewing 15 posts - 3,256 through 3,270 (of 6,486 total)
yup - forgot all about that little restriction...
And yes - it can sometimes turn out to be (quite a bit) less efficient than the older-style derived table. Looks to...
May 20, 2008 at 9:53 am
mtraphagen (5/20/2008)
May 20, 2008 at 9:40 am
I'm actually trying to figure out why you're doing sums both in the inner query and the outer query. It looks to me that you're making this substantially harder...
May 20, 2008 at 9:36 am
Sounds to me that you already have your answer. You've essentially determined your own issue: you need to accurate derive/store the effective date of the credits/payments instead of the...
May 20, 2008 at 9:08 am
GSquared (5/20/2008)
Jan Van der Eecken (5/20/2008)
May 20, 2008 at 8:34 am
ALZDBA (5/20/2008)
Download it, install it, and see what kind of remark, warning, errors it gives.
You may need to do some stuff as a perparation for the...
May 20, 2008 at 8:12 am
Since you're in 2005, you can actually use the new windowed version of max() to do just that. It looks something like this:
select
employeeID,
name,
...
May 20, 2008 at 7:47 am
Lee Hart (5/19/2008)
toniupstny (5/19/2008)
Have you tried to increase the Fillfactor for this index?Toni
Hi Toni,
That fill factor is the "recommended" fillfactor from the company and hence is the delivered fillfactor for...
May 19, 2008 at 6:35 pm
kristian aspelin (5/19/2008)
exec('select ?? from yc1')
When I run this it replaces the double bytes with question marks...
May 19, 2008 at 6:16 pm
ganeshmuthuvelu (5/19/2008)
The reason I need is, after getting the...
May 19, 2008 at 5:08 pm
ganeshmuthuvelu (5/19/2008)
declare @doc2 xml
SET @doc2 = '
<ROWS>
<COL1>1</COL1>
<COL2>2</COL2>
<COL3>3</COL3>
</ROWS>
<ROWS>
<COL1>11</COL1>
<COL2>22</COL2>
<COL3>33</COL3>
</ROWS>'
Select r.value('local-name(.)','varchar(20)') as Name,
r.value('(text())[1]','varchar(100)') as Value
From @doc2.nodes('//*') as x(r)
This works to return...
May 19, 2008 at 4:38 pm
Assuming you still have access to the SQL Server 2000 tools, when in doubt you can also try the DTS import and Export wizard. It can help get past...
May 19, 2008 at 2:11 pm
Chris - it looks like EmployeeID isn't an identity (autoincrementing) column, so trying to insert into your employee table without an actual value for employeeID will fail.
By the way -...
May 19, 2008 at 1:50 pm
MarkusB (5/19/2008)
I think you still don't fully understand.
The rownumbers should be ordered by the listprice or any other column I select. So when ordering desc by ListPrice I want the...
May 19, 2008 at 1:42 pm
MarkusB (5/19/2008)
the inner order is actually the important one.
Anyway I just a look at MS Connect and there is a report about this issue and the answer from...
May 19, 2008 at 1:20 pm
Viewing 15 posts - 3,256 through 3,270 (of 6,486 total)