Viewing 15 posts - 12,331 through 12,345 (of 13,469 total)
to add to what Prasad said, you can see the results for yourself. create a temp table, and peak at tempdb: a table unique to your session gets created...it may...
October 12, 2007 at 7:12 am
i believe that the results from a stored procedure must go into an existing table; ie:
create table #results(boatid varchar(30) ,otherstuff varchar(30))
insert into #results(boatid)
EXEC [DB0004]..[DB2INST1].[SP_ITM_UPDATE_TIME]
that should work;
October 12, 2007 at 5:26 am
if you want to go the cheapie route, the last shareware/free version of PKZip 2.5 was all command line, and works fine as long as the files were under 2...
October 11, 2007 at 12:59 pm
no it's not trappable, because it's an error raised BEFORE it enters the procedure, because it's a syntax and parameter checking error.
all sql statements are at least evaluated prior to...
October 11, 2007 at 12:09 pm
it might not be dts.dll, it could be a dependancy that it happens to use.
i went to my server and my sql 2005 express instance on my dev machine, but...
October 11, 2007 at 9:36 am
error loading DLL is a typical .NET error. it's pretty much one of 3 things:
1. if you are running this on the server, the DLL is not in the folder,...
October 11, 2007 at 8:49 am
just guessing at this point without more information as to what the step was actually doing, but...
could it be the login that is being used has had it's password changed?
or...
October 11, 2007 at 7:53 am
you can only do that with dynamic sql.
dynamic sql has some advantages, but you loose the speed advantage of compiled execution plans.
here's the example i always use:
--for users who are...
October 11, 2007 at 7:37 am
i can think of two important issues right now, aside from all the others raised.... how could you do a partial recovery? supposed you need to restore a backup from...
October 10, 2007 at 9:46 pm
oops don't crosspost. they handy recent posts option allows everyone to monitor all the forums, no need to place the same question in multiple places.
follow the posts here:
http://www.sqlservercentral.com/Forums/Topic408910-338-1.aspx
October 10, 2007 at 6:46 am
I don't know if this will help, but the big_int data type is 8 bytes in size, si it should be bign enough to hold the value; you probably already...
October 10, 2007 at 6:43 am
if you could post the DDL for the table, and change the sample records to insert statements, we could help better; there's just no way to sort thru that copy...
October 9, 2007 at 2:12 pm
in this case, you need to join the main table on itself.
in order to do that, you need to use at least one alias; here's an example based on your...
October 9, 2007 at 2:01 pm
i don't envy you on the backup retore side of your job, but at the same time i do envy the extra large db features;
I'd love the opportunity to learn...
October 9, 2007 at 1:00 pm
addankireddyprasad (10/8/2007)
Hi,If you are working on MS SQL SERVER 2000, You can update the master..sysservers table by enableing the sp_configure 'allow updates',1.
update master..sysservers set srvname='New name' ,Datasource='New name' where srvid=0
Regards,
Reddyprasad.A
MCITP
Bad...
October 8, 2007 at 5:51 pm
Viewing 15 posts - 12,331 through 12,345 (of 13,469 total)