Viewing 15 posts - 11,191 through 11,205 (of 18,923 total)
Maybe not... since no records were inserted using identity function, doesn't it make sens that the seed didn't change?? I think MS most likely thaught about that which makes me...
November 15, 2006 at 6:48 am
Good point... but I think the poster was reffering to some generated code (most likely EM)!
November 15, 2006 at 6:46 am
Sorry I didn't express myself well. I was reffering to ssms which is much slower and doesn't even support all the things EM supported. But I can't say that 2005...
November 15, 2006 at 6:44 am
Thanx for catching this. I didn't know that system procedure
.
Ya much better off doing this with DRI / TRIGGER than using a [system]...
November 15, 2006 at 6:41 am
SELECT * INTO Temp_CurrTable FROM dbo.CurrTable WHERE 1 = 0
INSERT INTO (Col1, Col2) Temp_CurrTable SELECT Col1, Col2 FROM dbo.CurrTable where Week Between 41 and 46 (or use the date column, just...
November 15, 2006 at 5:49 am
That sounds like something I would do... but not Steve
.
November 14, 2006 at 2:42 pm
You can't sort the data in the table because tables have no order (this is the base idea of databases)... you can only sort the data in the selects and...
November 14, 2006 at 2:41 pm
Alright... just keep us posted. I'm curious to see how you'll solve this one
.
November 14, 2006 at 2:38 pm
I am not the expert on this one so I'll let others handle your request. You can also search this site for pivot queries.
November 14, 2006 at 2:32 pm
I just gave you a way. But I have no idea how to execute it as I've never done it.
You can search for profiler and execution plan as a start. ...
November 14, 2006 at 2:26 pm
I think you can save the query plan in a trace. Then save the trace in a table and then search for the operator in question... No idea on how...
November 14, 2006 at 2:13 pm
No idea of what you want to do. Can you post the sample result you need from the selects in the inserts?
November 14, 2006 at 2:01 pm
Can't lose data if you test the solution and have a backup before running the solution
.
Also another solution I use to test something...
November 14, 2006 at 1:58 pm
I see no need to use an intermediate table for this... The task is too simple.
November 14, 2006 at 1:23 pm
Viewing 15 posts - 11,191 through 11,205 (of 18,923 total)