Viewing 15 posts - 1,051 through 1,065 (of 1,536 total)
Now I can't see any of the reports that I created though. Going to the home page shows me nothing other than the home page icon and the top right...
July 20, 2004 at 6:16 am
You could use a trigger on sysjobhistory to check for a job failure (if the dts is executed from there). You can then trap the raiserror as an alert.
CREATE trigger...
July 19, 2004 at 11:12 am
You could make use the dynamic properties task to execute a query against a table holding the information for all the files.
July 16, 2004 at 1:24 pm
Move the log to another drive with sufficient disk space to allow for all the inserts to happen.
Alternatively you could change the recovery model to simple, that's something you would...
July 8, 2004 at 11:08 am
Try
SET @command ='KILL ''' + cast (@uow as varchar(50)) + ''''
July 7, 2004 at 5:22 am
I've found it very helpful to create your production linked server using the SQL Server radio button and the actual linked server you will be connecting to. Then in dev...
July 6, 2004 at 7:05 am
Check out http://www.sqldts.com and look at dts loops, it describes the way the logic works and has a downloadable dts example.
July 1, 2004 at 4:54 am
There might have been a change to the command extensions which prevents pushd from using UNC paths. Check out the link from http://www.ss64.com/nt/pushd.html
July 1, 2004 at 4:49 am
I think it's a great idea, and would definately include a recommended reading portion for beginners through experts on everything.
June 22, 2004 at 11:38 am
A bit obscure this, but check the clock times on the server and the loca machine. If the clocks are out of synch by even a couple of minutes it...
June 22, 2004 at 6:35 am
The only thing you could do would be to remove the unique constraint.
June 21, 2004 at 7:52 am
declare @sql varchar(1000), @col_name varchar(10), @orderby varchar(10)
set @col_name = 'column'
set @orderby = 'desc'
set @sql = 'SELECT c1,c2,c3,c4,c5,c6
INTO #emp_temp1 FROM #emp_temp order by ' +@col_name+' '+@orderby
print @sql
exec...
June 17, 2004 at 9:35 am
Is it possible for you to get their admin to send you the machine specs and some perfmons of the basics (disk, cpu, memory) on the box as well as...
June 17, 2004 at 9:04 am
Aside from potential licensing issues running personal edition on a server, they could be running into memory problem, are you able to get an idea of the other processes running...
June 17, 2004 at 7:33 am
Have you done a dbcc checktable?
I'd also attempt bcping the data out, creating the indexes and then running a showcontig on that, check if you get results, if so drop...
June 17, 2004 at 6:36 am
Viewing 15 posts - 1,051 through 1,065 (of 1,536 total)