Viewing 15 posts - 136 through 150 (of 330 total)
Let me know if you do remember - would love to check it out 😀
September 23, 2009 at 1:44 am
kabi (9/23/2009)
Select A.NAME, A.VALUE, A.VERSION from(select row_number()over(partition by [name] order by VERSION desc ) as SlNo,* from #temp) as A
where SlNo=1
thumbs up
September 23, 2009 at 1:43 am
Barry: Nope - not even in 2k8! 🙂
Output from ssms 2k8 after sp_rename 'proce', 'procm':
CREATE PROC
[dbo].[procm] -- schema
.
proce -- procname
AS
print 'hello'
GO
September 23, 2009 at 1:42 am
I don't understand. Please take a look at the proc I supplied to you.
And please don't post the source to the same proc again, I honestly don't have the time...
September 22, 2009 at 2:28 pm
Elliott W (9/22/2009)
September 22, 2009 at 1:30 pm
mathieu_cupryk (9/22/2009)
Can you help me get started I would appreciate it.
I can try, but I really don't get what it is you're trying to achieve?
Why don't you create the proc...
September 22, 2009 at 1:28 pm
I must admit, i haven't read your post. But here's a proc I use to perform a similar function
CREATE PROCEDURE [dbo].[stproc_WebPlatform_ReturnDataRows]
@TableName varchar(256),
@offset integer = 0,
...
September 22, 2009 at 11:40 am
Elliott W (9/22/2009)
September 22, 2009 at 11:34 am
Wow, that procedure is horrific.
1) Don't use cursors unless you *really* can't find a way around it.
2) The output parameter is a cursor. BOL gives a good example.
September 22, 2009 at 11:21 am
Can you run this please?
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
September 22, 2009 at 11:09 am
There's no way to do it in DMO directly AFAIK. I do it in one of my products, and it's not easy. You need to write a lexical parser for...
September 22, 2009 at 11:05 am
Lynn / eko
No probs - glad to be useful! 🙂
Edit -> sorry eko - just one more thing - make sure you read the bit about 'types implemented after 2005'...
September 22, 2009 at 10:53 am
SSSolice (9/22/2009)
Nope. :crazy:
I feel your pain.
You know you will remember it at about 2AM, then you'll fall asleep and have forgotten by the morning!! 😀
September 22, 2009 at 10:27 am
Just a question - do you get any better performance loading into a temp table?
September 22, 2009 at 10:26 am
Hmmmmmm....
Let me explain it a bit more clearly for you.
Indexes are effectively like cards in a library. You might have a library card set that is sorted by author. You...
September 22, 2009 at 10:20 am
Viewing 15 posts - 136 through 150 (of 330 total)