Viewing 15 posts - 4,366 through 4,380 (of 5,394 total)
shen-dest (4/26/2010)
hi,you should avoid using prefix sp_ in your stored procedures. this is not related to your execution error, but just wanted to inform you.
shen-dest, you're right. You could...
April 26, 2010 at 2:59 am
DSD, I'm not directly involved in this discussion, but let me throw in my two cents.
As far as I know, many articles in your site were plagiarized. You say...
April 26, 2010 at 2:31 am
Take a look at this article[/url]. I think you will find all the information you need.
There are two assumptions that I would revise:
1) 100 rows is the edge value for...
April 26, 2010 at 1:53 am
This often comes from irresponsible ORDER BY clauses on badly written queries. Doesn't profiler show anything interesting?
There are 2 DMVs that could be helpful in this scenario:
sys.dm_db_task_space_usage
sys.dm_db_session_space_usage
Unfortunately you would have...
April 26, 2010 at 1:35 am
I'm sorry, Luigi, I don't understand where values 11-31 come from.
Can you explain it in other words please?
I guess you're Italian: I don't think we will be reprimanded for a...
April 23, 2010 at 8:56 am
At last!
I'm glad you got it working.
April 23, 2010 at 6:25 am
Has any of you solved this problem before? I would like to see your opinions.
April 23, 2010 at 2:25 am
What I have set up is very simple. Some applications share a key generator, in order to ensure key uniqueness.
The keys are generated by a SQL Server 2005 stored...
April 23, 2010 at 2:22 am
OK, looks like you need to filter the whole data set this way:
CREATE PROCEDURE yourProcedureNameGoesHere
@WaySide VARCHAR(50)
AS
BEGIN
SET NOCOUNT ON
SELECT ( Grp.name +...
April 23, 2010 at 1:35 am
Without seeing the actual code, I can only guess it involves a double sort (one ascending, one descending) prior to the sequence project steps. It could get expensive.
Can you post...
April 22, 2010 at 10:59 am
I'm trying real hard, but no success.
Am I asking the wrong way?
I'm going home now, I feel like giving up.
April 22, 2010 at 10:52 am
OK, let's take it one step at a time.
CREATE PROCEDURE yourProcedureNameGoesHere
@WaySide VARCHAR(50)
AS
BEGIN
SET NOCOUNT ON
SELECT ( SELECT name +...
April 22, 2010 at 10:48 am
Ok, so let's take next step:
DECLARE @WaySide varchar(50)
SET @WaySide = 'Redondo'
SELECT ( SELECT name + ',' + state
...
April 22, 2010 at 10:18 am
That's what I meant.
April 22, 2010 at 9:57 am
Viewing 15 posts - 4,366 through 4,380 (of 5,394 total)