Viewing 15 posts - 5,296 through 5,310 (of 6,216 total)
Create a linked server, then you can just use the four part syntax - server.db.owner.table to do the insert. You can use openquery to do the same thing on a...
December 7, 2001 at 11:47 am
I actually fix it as part of my backup:
For Each mDatabase In mSQLServer.Databases
if instr(strExcludeList, ucase(mDatabase.Name)) = 0 then
Set...
December 7, 2001 at 11:46 am
Check the account that the job is running under, may not have access.
Andy
December 7, 2001 at 9:39 am
Why not disable a processor to see if that is really the problem or not? I would be surprised if is, but easy to rule it out by testing.
Andy
December 7, 2001 at 7:36 am
Take a look at Index Server. It's not SQL, but it is an OLEDB data source that you can query against using sort of SQL syntax. I think Jon Winer...
December 6, 2001 at 7:15 pm
You'll need to spend some time experimenting with DTS - it supports any ODBC or OLEDB data source, so you should have no problem connecting to Oracle (well, in theory...
December 6, 2001 at 7:13 pm
If you're doing it real time, why not look at replication? In SQL2K you can do some pretty advanced transforms of the data as it moves? I find that the...
December 6, 2001 at 7:09 pm
Its a property of the TCP config - you can turn it off there. Also via DMO. Here is an excerpt from BOL for SQL2K:
"When you install an instance of...
December 6, 2001 at 7:05 pm
It does change each time. I just reset it.
Andy
December 6, 2001 at 6:58 pm
Please post your solution, others would like to know too!
Andy
December 6, 2001 at 5:12 am
Try reinstalling the client tools. Upgrading to SP3 might work as well.
Andy
December 6, 2001 at 5:08 am
Always a good idea to do your reporting from a separate server if you can. Transactional replication is a great solution, low latency and low overhead. Not only do you...
December 6, 2001 at 5:08 am
Yes you can do it using sp_start_job. But you honestly can't live with a one min or greater delay moving stuff into a warehouse?
Andy
December 6, 2001 at 5:05 am
I ran this:
declare @ierr int
declare @vtcmd varchar(1000)
set @vtcmd='C:\PROGRAM FILES\TMS\Dialer List Utility\DLU.EXE /USER:username /PASS:password'
EXEC @iErr = master..xp_cmdshell @vtCmd
print @ierr
And got this:
'C:\PROGRAM' is not recognized as an internal or external command,
operable program...
December 6, 2001 at 5:03 am
Interesting - thanks for the follow up!
Andy
December 6, 2001 at 5:00 am
Viewing 15 posts - 5,296 through 5,310 (of 6,216 total)