Viewing 15 posts - 226 through 240 (of 1,217 total)
Great! Thanks for the feedback, it is good to know that my suggestion helped.
December 12, 2007 at 1:00 am
Create a restore job and use it for every restore. Then you'll be able to see the duration in job history. In case you need to keep track of restores...
December 11, 2007 at 12:42 am
Well, obviously your SQL Server decided this morning that it had enough fun and started to work normally again 😀
I'm glad we were able to help... good luck!
December 10, 2007 at 8:45 am
SQL33 (12/7/2007)
December 10, 2007 at 12:54 am
SQL33, johnsql,
as several people mentioned, there is no way to say what is sequence number of a row, if you don't specify ORDER BY.
Rows in a table don't have any...
December 7, 2007 at 1:01 am
Just one additional thing: in case of some large scale operations (e.g. when inserting large amount of data), it may help a lot to drop indexes, perform the task and...
December 4, 2007 at 1:15 am
Please, could you explain it in more detail? I'm not sure I understand it correctly... it might be, that you are trying to create a common ID for the two...
December 4, 2007 at 1:04 am
Mark,
my experience is, that if I can't put what I need into words, it means I don't understand it well enough. Trying to describe the problem as accurately as possible...
December 3, 2007 at 9:31 am
I'll use the table structure and data from previous post.
If there is a possibility of multiple occurence of the same "sequence" value for one cuslink (shouldn't be, if that really...
November 22, 2007 at 5:00 am
Karim,
a lot depends on the way how data is inserted. Please follow Gila's suggestion and run Profiler trace to find out what happens on database level when the software inserts...
November 13, 2007 at 5:55 am
Mike Levan (11/8/2007)
I have inserted data into tableA except for jobno,jobname which will be null for this insert
now i have into insert from tableB(1 row) into tableA with fields...
November 12, 2007 at 1:14 am
Yes, we understand that. That is also the reason why everybody is asking you to post
1) the entire trigger (in case you posted only a part of it)
2) statement...
November 12, 2007 at 12:55 am
Hello Theo,
as far as I know it isn't possible, and even if it was, I don't think it would be advisable. A trigger calling SP also isn't the best solution,...
November 8, 2007 at 1:17 am
I'm afraid a lot can depend on the other, not mentioned things you're doing with data in this procedure... but generally, you can concatenate lists using UDF:
/*sample data*/
CREATE TABLE yourtable...
November 2, 2007 at 3:26 am
As Sergiy already said, first thing to consider is how to get needed result without resorting to row-by-row processing - no matter whether it is a loop or cursor. I've...
November 2, 2007 at 2:09 am
Viewing 15 posts - 226 through 240 (of 1,217 total)