Viewing 13 posts - 16 through 28 (of 28 total)
While I like the informative articles that this site tends to publish in it's newsletter, do we really need the astroturfing articles? Yes, barcoding is cool, but as Phil...
March 9, 2006 at 10:01 am
In Enterprise Manager you will only be able to backup to either local or mapped drives. In order to map the drive, either go through Windows Explorer (Tools -...
March 3, 2006 at 10:20 am
The dilemma is actually the fact that I don't have enough room on the filesystem to do the copy.
This is the reason for the "with truncate only" on the backup...
March 2, 2006 at 10:34 am
Somehow the idea of trusting my data to a bunch of (supposedly) well crafted stored procedures scares me. One of the databases I dealt with in the past took...
March 2, 2006 at 10:19 am
You mention 3 AND operators, are they in this query as well. i.e. There is more to the WHERE clause than first posted? Keep in mind that anytime you...
February 21, 2006 at 10:12 am
With a little less drama than the previous response, why do you want to do it one row at a time? You're going to slow the delete process WAY...
February 16, 2006 at 10:51 am
Your best bet is going to be to use an identity column in the temp table. For the initial select statement try something like:
select distinct Identity (int,...
January 23, 2006 at 11:26 am
This may or may not pertain, depending on how you are doing the mailing. Assuming you are using xp_sendmail:
When you run the job manually, it will use your mail...
December 13, 2005 at 10:52 am
I couldn't say why the output variable isn't being returned. However, would it be possible to simply select the number you want as an output variable into another record...
December 9, 2005 at 10:21 am
For each database there should be a sysfiles table, that should have the data you are looking for.
e.g.:
use northwind
select
name,
filename
from
...
November 16, 2005 at 11:05 am
Yes, but you need to modify the ACL on the service to allow start and stop privledges to a user/group for that service.
Try this article, method 3:
http://support.microsoft.com/default.aspx?scid=kb;en-us;288129
November 15, 2005 at 5:16 pm
Within the DTS package creation utility, in Enterprise Manager, you can set the order of events, and what path that order will take on success or failure of a step....
November 15, 2005 at 4:43 pm
It's really going to depend on what the query is doing and what type of data it is going against. If the data is mostly static, consider setting up...
November 15, 2005 at 1:38 pm
Viewing 13 posts - 16 through 28 (of 28 total)