Viewing 12 posts - 1 through 13 (of 13 total)
That sounds like it might work. Let me go try it out and see what happens. Thanks!
June 11, 2004 at 12:13 pm
I forgot to mention that I really can not use a temp table to store a second copy of TABLE1. There are several DTS jobs that are doing something similar. Each...
June 11, 2004 at 12:03 pm
Where can I get xp_md5? We're storing the password using MD5 encryption on the front-end using Cold Fusion's "hash" function. I also need to have this same function at the...
June 10, 2004 at 12:06 pm
Correct. I can hardcode the columns and it works just fine. I just need it to be more dynamic so that it'll also work when a City is added/deleted.
fhanlon's link...
February 18, 2004 at 10:14 am
That query returns the same thing as:
SELECT * FROM Rate
I've gotten it to resemble the Excel file using:
SELECT From_City,
SUM(CASE To_City WHEN 'Los Angeles' THEN Cost ELSE 0...
February 17, 2004 at 6:25 pm
The table is named "Rate" with 3 fields:
1) From_City varchar(50)
2) To_City varchar(50)
3) Cost int
It's a simple table, but is giving me a very big headache...
If you need more info,...
February 17, 2004 at 5:01 pm
If you really wanted to you can. Just create a table like "sp_Status". In your sp, just insert a record into sp_Status with some description at whatever steps/points you want. ...
February 12, 2004 at 6:32 pm
CREATE PROCEDURE sp_IsJobRunning
@JobName as varchar(100) = Null
AS
-- Create a temporary table to hold job info
CREATE TABLE #Job (job_id UNIQUEIDENTIFIER NOT NULL,
last_run_date INT NOT NULL,
...
February 11, 2004 at 12:18 pm
Value Description
0 Returns only those jobs that are not idle or suspended.
1 Executing.
2 Waiting for thread.
3 Between retries.
4 Idle.
5 Suspended.
7 Performing completion actions....
February 10, 2004 at 9:46 am
Ignore the above.
I've used TSQL to delete this invisible backup device:
sp_dropdevice 'master'
It's odd that it's not showing though...
August 4, 2003 at 2:41 pm
1. Error Message is "Failed (7/17/2003) 4:35:58 AM)". In View History:
The job failed. The Job was invoked by User 323S\SQLADM. The last step to run was...
July 17, 2003 at 9:45 am
That is what I thought too. However, subsequent execution (using real production data with blanks spaces in 431-447) only imports every other record. I've verified that it only...
July 3, 2003 at 11:25 am
Viewing 12 posts - 1 through 13 (of 13 total)