Viewing 15 posts - 26,461 through 26,475 (of 26,484 total)
You job is probably running as sa, correct? If so, it is running under the security context of the account running SQL Server Agent. This user needs to have access...
July 10, 2006 at 3:26 pm
If you can run the DTS packages manually, but they fail as a scheduled job, then it points to a permissions issue for the user under which the DTS jobs...
July 10, 2006 at 11:31 am
I have to agree with Ken, Joe. After reading your response
above plus several others, you are down right mean and unhelpful.
You may be a smart SQL Server Guru and a...
July 4, 2006 at 9:56 pm
Instead of a CASE statement, try this in your where clause instead:
((@BrokerType = 'NON_AFFILIATED' and affiliation.affiliatedcompanyid is null)
or (@BrokerType = 'AFFILIATES' and affiliation.affiliatedcompanyid is not null)
or (@BrokerType = 'BOTH'))
HTH,
Lynn
July 3, 2006 at 9:25 am
lost part of the post. The where clause would be this:
where billdate >= @dt3 and billdate < @dt
again hth,
Lynn
June 19, 2006 at 3:29 pm
add the following to your snippet:
declare @dt3 datetime
set @dt3 = dateadd(mm, -1, @dt)
select @dt, @dt3 --> 2006-06-01 00:00:00.000 2006-05-01 00:00:00.000
a where clause selecting on dates would look something like this:
where
June 19, 2006 at 3:27 pm
Looking at your screen prints, it looks like your SQL Server Management Studio connection to "Kenny" is also looking at your SQL 2000 instance. The version number showning there is...
June 6, 2006 at 10:08 am
You probably installed SQL 2000 first as the default instance. When you installed SQL 2005, you had to install it as a named instance. In your connection string, you are...
June 6, 2006 at 9:01 am
Your transaction log for the BossData database is most likely full. You need to truncate the transaction log and then do a full backup of the database.
Check you disk drives...
June 5, 2006 at 10:21 am
I agree with the above comments. A full database backup does not truncate the transaction. Enough of the transaction log is backed up so as to create a stable backup...
May 4, 2006 at 10:12 pm
There are 2 other alternatives. The first is to write a Service program that monitors the ftp log file (a text file) looking for a successful ftp of each of...
May 4, 2006 at 8:36 pm
Here is one solution:
create
table dbo.SalesLine (
docdate datetime,
product
varchar(
April 14, 2006 at 10:44 am
Kirk,
Thanks for the info on getting an error description out of an error code. I was just starting on trying to figure out how to accomplish this ina package i...
March 22, 2006 at 11:19 am
You need to set the trace flag 1807 to configure SQL server to with network-based database files. You can find a list of some of the documented and undocumented trace...
January 13, 2006 at 8:07 am
Viewing 15 posts - 26,461 through 26,475 (of 26,484 total)