Viewing 8 posts - 1 through 8 (of 8 total)
Hello. I got the same problem. If I set Agent XPs to enable and try to start the service the system sets Agent XPs back to disabled. I have never...
November 17, 2008 at 1:53 am
Yes it is a good product. We use it in production on several SQL servers. But in this case, when we should totally move...
September 8, 2005 at 12:26 am
Something like this i think. Tablename is test with columns name, title and date:
<?xml version="1.0" ?>
<Schema xmlns="urn:schemas-microsoft-com:xml-data"
xmlns:dt="urn:schemas-microsoft-com:xml:datatypes"
xmlns:sql="urn:schemas-microsoft-com:xml-sql" >
<ElementType name="name" dt:type="string" />
<ElementType name="title" dt:type="string"...
March 29, 2005 at 5:46 am
I have used this script many times and it works good. (I think I found it here on sqlservercentral).
/Joel
SET NOCOUNT ON
DECLARE @LogicalFileName sysname,
@MaxMinutes INT,
@NewSize INT
-- *** MAKE SURE...
December 7, 2004 at 6:45 am
As Guy say, you don't need VB on the computer. Just make an *.vbs file and windows execute it. Exampel:
Set objBL = CreateObject("SQLXMLBulkLoad.SQLXMLBulkLoad")
objBL.ConnectionString = "provider=SQLOLEDB.1;data source=Servername;database=test;Integrated Security=sspi"
objBL.ErrorLogFile = "e:\temp\error.log"
objBL.Execute "e:\temp\schema.xml", "e:\temp\test.xml"
Set...
March 23, 2004 at 11:51 pm
I have used the xmlbulkload function with a VB script to import xml to SQL. I think I saw a KB article at Microsoft about it. Look there.
March 18, 2004 at 3:46 am
The problem was that I didn't have anything in the backupdevice. But I still got the databasefiles. So restore is not possible. I have no backup on the...
February 27, 2004 at 2:49 am
Ok, thanks. Know I have some hour to handle this manualy instead 🙂
Have a good weekend.
/Joel
May 9, 2003 at 3:46 am
Viewing 8 posts - 1 through 8 (of 8 total)