Viewing 15 posts - 106 through 120 (of 123 total)
Did you check the permissions of the user that runs the SQL Server? If it does not have appropriate rights then that kind of problem may occur.
July 17, 2006 at 11:31 am
Alternetively, you may try to have an inner select where you need the "text" field in your select and use a where clause like "where bacoDiscussions.Body IS NOT NULL AND...
July 17, 2006 at 3:31 am
Surely it works, but you need to do followings:
July 17, 2006 at 12:38 am
CREATE TABLE Test ( IDINT, MtTextTEXT )
July 16, 2006 at 2:21 am
Right click on the project go to "Properties" and then find "Configuration Properties" tab, under "Debugging" section unchech "SQL Server Debugging".
Hope this helps.
Cheers.
July 15, 2006 at 3:28 pm
Hi Michelle!
If you use QA you will probably have ran the pieces of scripts in bunches that is in seperate runs. This way makes the transaction smaller. If your job...
July 15, 2006 at 3:13 pm
Switch to SQL 2005 It has DDL triggers that you can use to log alter statements so the sp versions.
Cheers.
July 15, 2006 at 2:38 pm
I can strongly suggest you MS MOM utility. http://www.microsoft.com/mom/default.mspx
It can notify you for failed jobs as well as any other error you may want to be notified. (Hardware errors,...
July 15, 2006 at 2:03 pm
May God help you
I too hate hate that kind of bosses who do not know what you are dialing with all the...
July 15, 2006 at 11:38 am
With which security account that the server runs? I mean if the sql server service runs with a different account than yours or the the system account that may not...
July 15, 2006 at 11:32 am
Isn't you trace files sequential? otherwise you will have to make recursive operation like that:
DECLARE @i INT SET @i = 0
WHILE @i < 20 -- for example BEGIN
INSERT INTO TraceMon (<Column Names>
July 15, 2006 at 10:53 am
Making the "or" query into a dynamic statement is a good idea for this case but you should always keep in mind that the optimiser will have to optimise your query...
July 15, 2006 at 10:45 am
Viewing 15 posts - 106 through 120 (of 123 total)