Viewing 15 posts - 3,556 through 3,570 (of 3,613 total)
The MS Press book SQL Server 2000 with XML has a whole chapter on enabling your SQL Server to allow queries and updates via HTTP.
It then goes on to say,...
October 17, 2002 at 2:42 am
Great idea, providing you are using ADO.
Being a SQL Server guy it is very easy to get into the Microsoft mentality. JFDI methodology.
We use a variety of Web Content Management...
October 14, 2002 at 3:37 am
Books on line says "A parsed document is stored in the internal cache of SQL Server 2000. The MSXML parser uses one-eighth the total memory available for SQL Server. To...
October 14, 2002 at 3:14 am
I use snapshots when I need to duplicate a live environment for testing purposes.
1. Receive change request.
2. Snapshot the live to a development machine.
3. Test on the development machine.
4. Make...
October 11, 2002 at 5:40 am
Oh the embarrassment, thanks to Carsten Dauguaard for spotting it.
exec sp_xml_preparedocument @iDocumentHandle OUTPUT, @stdoc
should be
exec sp_xml_preparedocument @iDocumentHandle OUTPUT, @stXML
October 10, 2002 at 3:26 am
Oh the embarrassment!!!!
Thanks to Carsten Dauguaard for spotting it.
In the code for the stored procedure
exec sp_xml_preparedocument @iDocumentHandle OUTPUT, @stdoc
should be
exec sp_xml_preparedocument @iDocumentHandle OUTPUT, @stXML
This is what you get when you...
October 10, 2002 at 3:24 am
If these critical fixes are not part of SP3 then would you recommend holding off on SP3 and wait for SP4?
October 8, 2002 at 4:21 am
What are you going to do with that text parameter after you have retrieved it?
Why not loop through the returned recordset and build up the string in your app and...
September 27, 2002 at 10:06 am
I DO name my constraints.
If SQL needs an index and there isn't one available it creates its own.
Sometimes an index is not appropriate but SQL may decide that it needs...
September 9, 2002 at 3:11 am
If all you want is a list of names simply run
SELECT Name FROM SysObjects WHERE TYPE='P'
P = Stored Procs
V = Views
TR = Triggers
If you want the actual definitions then try
SELECT...
August 22, 2002 at 2:36 am
I'm willing to be that the dbo user does not have an associated login.
Use sp_ChangeDbOwner '<<whatever login you want>>' within the database and the dbo user should be fine.
I often...
August 22, 2002 at 1:35 am
Although these utilities are useful I felt a chill go down my back the first time I saw one of these things working.
I used the toolkit from http://www.lostpasswords.com on NT...
August 19, 2002 at 3:00 am
I had a table called Tbl_CommenceDownload and noticed that I gained an index called tTbl_CommenceDownload.
I attempted to drop this and got the standard message that tells you that you are...
August 15, 2002 at 10:00 am
I thought this at first, however it is not as simple as the naming convention.
Not all system indices start __WA etc.
The way I get around it at present is to...
August 15, 2002 at 9:26 am
Viewing 15 posts - 3,556 through 3,570 (of 3,613 total)