Forum Replies Created

Viewing 15 posts - 1 through 15 (of 29 total)

  • RE: Aye Yi Yi

    Sorry for plugging my own product but I have developed what I believe to be the first 100% succesful spam solution...

    Basically what we do is first of all check the...

  • RE: advanced tuning on 876,000,000 rows

    Thanks for that, thats very helpful!!

    Its very good to see that good response times are possible for that amount of data.

    I am going to be re-structing my database.

     

  • RE: advanced tuning on 876,000,000 rows

    mmmm.....

    yes, i hadnt thought through the storage size issues yet! I think i shall have to re-think the structure. Alot of the data will be duplicated so im going to...

  • RE: Using OpenXML to import into SQL 2000

    That is what i have suggested, the above code passes the XML as ntext (Unicode Text).

    Dan

  • RE: XML

    Yes, its a fairly easy job to get the data out in XML format from SQL Server, I would then pass it through an XSLT to meet the requirements (If...

  • RE: getdate() function SQL SVR 7

    If look up CONVERT in SQL Books Online then you will see there are a whole load of different formats you can convert the datetime value into. It is...

  • RE: VB.NetCentral.com

    mmmm... good idea!

    There are plenty of other sites for VB.Net, but i like the format of SQLServerCentral... Maybe i should create a VB.NET version? (Without infringing on SQLServerCentral of course....)

    ...

  • RE: Insert errors on SQL 2000

    Just a quick one to check...

    I had somthing similar and was having a load of problems finding out exactly what it was. Found it one night when I had...

  • RE: Replace of nulls in multiple tables

    you could write a stored proecure that uses the the syscolumns table to get a list of columns for a particular table

    get the results of this query into a cursor...

  • RE: Enterprise Mgr or just Query analyzer?

    if you want to allow your developers to setup DTS packages and SQL Manager scheduled task etc then they will need access to EM.

    Think this depends on the size of...

  • RE: BCP

    if you are bcp'ing with a query then add...

    getDate() as column_name as one of the selected fields.

    Otherwise you can set the default value to the column to be getDate() and...

  • RE: carrriage return in XML elements non-standard??

    i knew they were gonna be bother!! they are using our XML interface (.NET & SQL 2K XML) with PhP!!

  • RE: carrriage return in XML elements non-standard??

    ok, found it on w3...

    im write, customer wrong. For any reference...

    http://www.w3.org/TR/REC-xml

    2.2 Characters

    Quote

    [

    Legal characters are tab, carriage return, line feed, and the legal characters of Unicode and ISO/IEC...

  • RE: Java stored proc support in sql server 2000

    It will work with SQL 2000, but within SQL 2000. The only way you can use Java is as the access to SQL 2000. There is no way...

  • RE: table data type in stored procedures

    They can be used in SP's but don't think they can be used as parameters.

    You have to delcare them within the body of the SP...

    DECLARE @table1 table (a1 int, a2...

Viewing 15 posts - 1 through 15 (of 29 total)