Viewing 15 posts - 12,436 through 12,450 (of 15,381 total)
SQLRNNR (4/12/2012)
Steve Jones - SSC Editor (4/12/2012)
April 12, 2012 at 12:33 pm
Lynn Pettis (4/12/2012)
What would happen here on SSC if the TOP 25 posters did nothing but lurk for 24 hours?
Then there would be several of the rest of us who...
April 12, 2012 at 12:32 pm
capn.hector (4/12/2012)
Lynn Pettis (4/12/2012)
drew.allen (4/12/2012)
Sean Lange (4/12/2012)
Why are you so stubborn about posting ddl and sample data?
I've come to the conclusion that he's not really interested in answers. He's...
April 12, 2012 at 12:25 pm
Here is the complete solution based on the information you have provided so far.
select ? from ?
Why are you so stubborn about posting ddl and sample data? If you would...
April 12, 2012 at 11:09 am
suhailtajraja (4/12/2012)
April 12, 2012 at 11:06 am
Are you calling the Update method of your sqladapter? The update will not work when there is more than 1 base table. You have to execute your dynamically built sql...
April 12, 2012 at 10:55 am
You already provided that table. Here it is all at once.
CREATE TABLE [dbo].[INT_AUX_FAVORITES](
[USER_ID] [int] NOT NULL,
[TYP_IND] [smallint] NOT NULL,
[ENTITY_ID] [int] NOT NULL,
[ENTITY_SRC_ID] [int] NOT NULL,
[DOMAIN_ID] [int] NOT NULL,
[ENTITY_NM] [nvarchar](150) NOT...
April 12, 2012 at 10:42 am
And if you are doing this as a single insert and you cancelled it, the implicit transaction would have been rolled back so there would be no data. If you...
April 12, 2012 at 9:45 am
phood (4/12/2012)
here is my select command with the join:
select...
April 12, 2012 at 9:43 am
Posting them as insert statements would be the preferred method. That way the people offering to help get your data in an easily consumable format.
April 12, 2012 at 9:40 am
There are far more tables than just the favorites. Also, we need sample data for each table.
April 12, 2012 at 9:35 am
this is just a shot in the dark but I assume you passing in @Matter_ID and @Project_ID?
See if this select would get all int_aux_favorites that you want deleted for a...
April 12, 2012 at 9:00 am
I can pretty much guarantee there is no need for a cursor for this. This is nothing more than a delete statement inside a loop. This can pretty easily be...
April 12, 2012 at 8:47 am
The ambiguous column name means you need to specify which table it is coming from. Add the table alias to each column.
The join is from Access to SQL so you...
April 12, 2012 at 8:45 am
Viewing 15 posts - 12,436 through 12,450 (of 15,381 total)