Viewing 15 posts - 8,701 through 8,715 (of 13,469 total)
sunny.tjk (9/23/2010)
I meant which events and columns should I choose in Profiler when sql server is running slow?
well you need TextData and DatabaseID so you Know what command was...
September 23, 2010 at 1:07 pm
i think that without a TRY CATCH, the moment an error is encountered, processing stops, and it never gets to the error handling code;
i've got this example saved in my...
September 23, 2010 at 10:47 am
i think the events SQL:BatchCompleted , which catch ad hoc queries, and RPC:Completed, which catches code executes in a procedure or function(is that right) are what i typically use;
I think...
September 23, 2010 at 10:39 am
another issue to consider;
avoid updating a static table based on a rollup of other information; use a view instead;
the tables could be out of sync if the process is not...
September 23, 2010 at 8:11 am
your issue is you need to update FROM another table...not a real table, but a summary of data in another table;
you didn't provide any details as far as the schema...
September 23, 2010 at 8:04 am
wisdom.vivek (9/23/2010)
Better to use 'Text' DataType whenever we need to store large texts in our database.
no, the TEXT datatype is in the process of being deprecated in favor of the...
September 23, 2010 at 6:04 am
pankaj.kuchaliya (9/22/2010)
September 23, 2010 at 4:58 am
glad you are getting a handle on it; kudos for posting what you are trying so you can get the proepr kind of help; too often we see folks just...
September 22, 2010 at 11:02 pm
yep the errors telling you the issue, and it was kind of what i expected.
this value exists in that column:
'Assistant Manager Officials & Managers'
it should be obvious that...
September 22, 2010 at 10:36 pm
seems like your column EEO1Classification is actually a varchar even though it might contain what seems to be just integers....so you'll have to explicitly convert it to do the sum...
September 22, 2010 at 10:22 pm
what would happen if your procedure received NULL for either of the two parameters? could it raise an error?
exec [sp_ETL_To_Rpt] @frmdt,@todt
since your trigger says it's also for DELETE, and you...
September 22, 2010 at 10:19 pm
i use getdate() excluseively; like others havre said, it's been in my repitoir for years, and also because of that datatype where a timestamp is not really a timestamp, but...
September 22, 2010 at 11:00 am
ok, this example, based on your provided data seems to work for me;
i'm assuming the discount rates are added to the same table...but i hope it is obvious that a...
September 21, 2010 at 7:01 am
interesting wissam;
the excel spreadsheet you receive, does the start and end date apply only to the short term offer? so for one month some rate is slightly cheaper, but the...
September 21, 2010 at 4:23 am
Ratheesh.K.Nair (9/19/2010)
The application wont connect to database...For remote connection you should enable both TCP\IP and NAMED PIPES
i don't think that is true; SQL will simply use only the TCP/IP instead;...
September 20, 2010 at 2:29 am
Viewing 15 posts - 8,701 through 8,715 (of 13,469 total)