Posts Tagged ‘sql’

Server did not recognize value of HTTP Header SOAPAction http://schemas.microsoft.com/sqlserver/2003/12/reporting/reportingservices/Render

You will get this error with SQLSRS if you are using the ReportExection URL with webservices.
the correct URL is: http:///reportserver/ReportService.asmx

Leave a Comment

Two quick MySQL tips

MySQL: Running a SQL script from the command line:
mysql mydatabase -u<mysql username> -p<mysql password> < /home/mysqlscript.sql
MySQL: Stopping a long query:
mysqladmin processlist
Get the id from the first column then run:
mysqladmin kill <ID>

Leave a Comment

WSS 3.0: Deleted Config LDF file - no backups, now what?

Well guys, i just had the pleasure of deleting the LDF database file for my WSS 3.0 dev site.
Why? The server had literally 0.99MB of hard disk space and out of desperation, i deleted the 7GB log file by stopping the sql service and deleting the LDF file - i know, i wasn’t thinking straight…
Anyway, SQL [...]

Comments (1)

Sharepoint - EventID: 17137

You recieve the event (17137) in the eventlog when you migrate the databases to a different disk or partition (in this case i moved it to a different partition).
The description for Event ID ( 17137 ) in Source ( MSSQL$MICROSOFT##SSEE ) cannot be found. The local computer may not have the necessary registry information or message [...]

Leave a Comment