Viewing 15 posts - 1 through 15 (of 267 total)
I would use mslava's method.
The problems with many of the earlier posts, which will tell you whether the file exists, is that they do not tell you whether you can...
May 20, 2004 at 3:26 am
Have you tried the DTSRUN utility? Here is the stuff from bol:
The dtsrun utility executes a package created using Data Transformation Services (DTS). The DTS package can be...
May 20, 2004 at 3:10 am
May 13, 2004 at 4:20 am
Found an answer here : http://support.microsoft.com/default.aspx?scid=kb;en-us;282966
April 15, 2004 at 6:24 am
I've fixed this now by deleting each step and recreating it. Not sure why this would fix the problem or why the problem appeared in the first place.
Jeremy
April 15, 2004 at 5:03 am
I proved to myself with a msgBox statement that it is picking up the parameters at run time.
Thanks
Jeremy
April 14, 2004 at 7:52 am
Thanks and a couple of questions.
1. What's the best way of checking whether the DTS package is using the passed parameters? I read in BOL that, depending on ownership and...
April 14, 2004 at 7:32 am
This may or may not help, but I found this UDF on this site:
CREATE Function fn_FileAvailable (@FileName VarChar(255))
Returns Int
As
Begin
/*
Return Values
= 0 FileSystemObject can open...
March 23, 2004 at 3:28 am
Thanks Steve - it helps a great deal.
Jeremy
March 22, 2004 at 6:13 am
Thanks for the info.
I have just found the problem. I discovered that when I checked to see whether the user already had Database access, I was getting a false result...
February 18, 2004 at 1:14 am
I must have an old version of BOL . This is what mine says for db_ddladmin:
db_ddladmin | Can issue ALL... |
January 23, 2004 at 1:31 am
Don't use select *. Select the actual column names from table b.
Jeremy
December 5, 2003 at 1:24 am
Looks like Frank is away today but he normally refers people to these sites:
http://www.algonet.se/~sommar/arrays-in-sql.html
http://vyaskn.tripod.com/passing_arrays_to_stored_procedures.htm
Jeremy
December 4, 2003 at 9:06 am
Thanks for the ideas. I was thinking about a datediff function as well but it does need more investigation.
However, we going to try and get everything using Windows login...
December 4, 2003 at 7:10 am
SQL Server will change the dates into datetime fields so you query will read
select top 10 *
from fact_ins_booking
where date_key between '2002-10-16 00:00:00'
and '2002-10-25 00:00:00'
If your rows have a time stamp...
December 1, 2003 at 2:54 am
Viewing 15 posts - 1 through 15 (of 267 total)