Viewing 15 posts - 10,816 through 10,830 (of 13,462 total)
I think Jack might have the key right there: Exceeded storage allocation. is mailbox full, right?
alternatively, maybe your server is set for 10 Megs, but the destination server's limit...
July 20, 2009 at 10:35 am
you should paste the whole error;
when i googled "error -2146893044"
i found "error -2146893044: The logon attempt failed " in the first 3 links, but it seemed to be referencing network...
July 20, 2009 at 9:56 am
SQLServerVBA (7/20/2009)
July 20, 2009 at 9:35 am
could it be security? does the uer who is inserting/updating into the table also have insert rights on the table in the other database?
maybe these specific statements need EXECUTE...
July 20, 2009 at 9:17 am
ive seen this before...make sure that user has a specific default database for his login, instead of master. that database should be whatever database he's using for the application.
i think...
July 20, 2009 at 9:11 am
there's a script in the scripts ection for sending an SMS in a trigger here:http://www.sqlservercentral.com/scripts/Miscellaneous/31899/%5B/url%5D
that uses the exisitng email-to-SMS functions that every cell carrier seems to support.
there's a lot of...
July 20, 2009 at 8:04 am
two ways...you can use the REPLACE function to replace the bad word with an empty string:
UPDATE MYTABLE SET MYCOLUMN = REPLACE(MYCOLUMN,'BADWORD','')
this is a better solution, because if the bad word...
July 20, 2009 at 6:13 am
[ edit doh i think i misread your question; i thought this was related to backups over the network, getting xp_cmdshell to work over network, etc...sorry]
I don't think you can...
July 20, 2009 at 6:07 am
I agree with Pradeep ; the issue appears that the service is not running.
log into the server, go to control panel/Administrative Tools/Services, and try to start the SQL service again....
July 18, 2009 at 6:20 am
Just for fun, I wanted to try this out; I had "Recover4all Professional 2.25", some old undelete program I used to recover some files a while back.
I created a database...
July 18, 2009 at 5:24 am
not in the exact same operation, but you can use one backup to restore/create as many databases(each with a new name) that you want.
whether from the GUI, or via...
July 18, 2009 at 5:04 am
i believe i saw thread which stated that openquery against a linked server was faster for a linked server vs a query on your server using 4 partnaming conventions;
for example,...
July 16, 2009 at 4:27 pm
it should work with some minor tweaks:
after you've done the DECLARE @acumul_error varchar(100) or whatever it is, you need to initialize it as an empty string:
SET @acumul_error =''
in the...
July 16, 2009 at 12:24 pm
here's another option;
you can create a linked server for a Folder on the server, and each text file becomes a table. every file that is comma delimited can...
July 16, 2009 at 12:08 pm
both are views of course, created to help pull information about the metadata together.
the data in the two columns will often be the same; Information_Schema is a standard format...if you...
July 16, 2009 at 5:18 am
Viewing 15 posts - 10,816 through 10,830 (of 13,462 total)