Viewing 15 posts - 3,631 through 3,645 (of 8,416 total)
Grant Fritchey (4/27/2010)
No doubt there are very good reasons to upgrade, but two years into the cycle and only, in theory, 18 months from the next version...
I agree - there...
April 27, 2010 at 5:46 am
ondrej.bouda (4/27/2010)
April 27, 2010 at 5:43 am
Bhuvnesh (4/27/2010)
I dont see any difference between temp table and table variable except their "creation syntax" ?
Please read Wayne's excellent article, referenced in Gianluca's post for a pretty full comparison.
April 27, 2010 at 5:14 am
Well you certainly could do it that way - but it seems very inefficient to split, convert, and then concatenate again.
Much faster to do it all in one step, in...
April 27, 2010 at 5:10 am
aaa-322853 (4/25/2010)
April 27, 2010 at 4:03 am
I agree with Mr Coffee - it's not entirely clear what is being asked, but this is my guess:
SELECT StartDate, InvoiceDate
FROM @Table
WHERE @Date >
...
April 27, 2010 at 2:53 am
Books Online:
How to: Upgrade a SQL Server Failover Cluster Instance (Setup)
Match #3 on a Google search for "upgrade cluster to 2008".
April 27, 2010 at 1:25 am
One common solution is to full-text index a computed column.
The following example happens to search for exact matches, but it can be easily modified to incorporate inflectional forms.
-- Test table
CREATE...
April 27, 2010 at 1:18 am
nguyennd (4/27/2010)
Huhu = hic hic 😀
Hmmm...hic hic doesn't mean anything to me either. Is it laughter?
Thank Paul, very very ...
But why do you use
MAXPRICE = MAX(D.Price) OVER (PARTITION BY...
April 27, 2010 at 12:51 am
April 27, 2010 at 12:19 am
Why the issue occurs:
To 'solve' it, just stop enforcing the password policy using
Alternatively, consider using stronger passwords, that do meet the policy requirements 😉
April 27, 2010 at 12:14 am
Is there an award for writing the world's worst procedure?
If so, this is a real contender:
http://www.sqlservercentral.com/Forums/Topic910833-392-1.aspx
I just don't know where to start with a reply.
April 27, 2010 at 12:06 am
That's not very different - I'm surprised you couldn't work it out for yourself :Whistling:
SELECT DV.DetailKey,
DV.MAXDATE,
...
April 26, 2010 at 11:38 pm
Another way:
SELECT my_group = ROW_NUMBER() OVER (ORDER BY DS.row_begin_date),
DS.row_begin_date,
iTVF.row_begin_date
FROM dbo.DIARY_STATUSES...
April 26, 2010 at 11:03 pm
Viewing 15 posts - 3,631 through 3,645 (of 8,416 total)