Viewing 15 posts - 526 through 540 (of 582 total)
I'm not sure why you are using the "instead of" type of trigger. With the "after" type of trigger you don't need to delete the row. Also, I don't think I...
October 4, 2004 at 3:36 pm
Thanks for the tip! I just found this article, http://www.winnetmag.com/Windows/Article/ArticleID/43117/43117.html, on the subject thanks to your suggestion.
I think they are going to try to match processors and drives...
August 24, 2004 at 7:37 am
I went though the same headache two years ago. The problem was the encrypted DTSrun command. I now write my own dtsrun statement and use trusted authentication. The only thing I...
August 6, 2004 at 8:22 am
Try this:
update a
set a.from_dept = b.to_dept
from dummy a join dummy b on
a.o_id = b.o_id and b.o_tmst = (select max(o_tmst) from dummy c where c.o_id = a.o_id and c.o_tmst < a.o_tmst)
Kathi
June 29, 2004 at 12:17 pm
By default only sysadmins have permission to use it. But if you run this "grant execute on xp_smtp_sendmail to public" then everyone will have permission to use it. ...
June 24, 2004 at 12:47 pm
Go to http://www.sqldev.net/xp/xpsmtp.htm for a SQL Mail alternative. I am using SQL Mail on several servers. I haven't had problems getting it configured -- but then we are on Exchange. ...
June 24, 2004 at 11:44 am
A couple of "slammer-safe" MSDE installations were recently installed in our environment. No network protochols were installed by default.
Install Enterprise Manager on the box and check the network protochols.
June 21, 2004 at 1:00 pm
Thanks for your feedback. I am definately going to insist on a trial period with a couple of dev systems to see what happens.
June 17, 2004 at 11:53 am
Our firm recently implemented a NetApp filer and is using it for Exchange. I just found out that the intention is to move some or all of our SQL Server...
June 17, 2004 at 9:45 am
Wow! That worked. I've written VBScript for years and never came up against this problem before. Thanks. You saved me from writing some ugly code.
Kathi
June 17, 2004 at 8:00 am
This is how I do it and I haven't have any trouble with precedence:
1. Select the first task that I want to run
2. Hold the shift key and select the...
June 4, 2004 at 9:01 am
If all of the tasks are connected in one workflow, the precedence should flow according to the workflow arrows. If you have multiple workflows, then I guess it is up...
June 4, 2004 at 7:44 am
I just noticed you are possibly going to have trouble with your query. It should probably look like this:
select dnrt_phone_numb,dnrt_agency,dnrt_in_date
from super_dba.dncrt
WHERE (DNRT_IS_DATE > 20040601 OR
DNRT_FG_DATE > 20040601...
June 3, 2004 at 11:41 am
Search for "Lookup Queries" in BOL. It has exactly what you are looking for.
Kathi
June 3, 2004 at 11:37 am
I am pretty sure you will have to have MS Access installed on the server to do the compact and repair function.
What about this:
Create an Access database with the empty table objects --...
June 3, 2004 at 11:20 am
Viewing 15 posts - 526 through 540 (of 582 total)