Forum Replies Created

Viewing 15 posts - 13,246 through 13,260 (of 13,469 total)

  • RE: help needed with xp_cmdshell

    Shelling out an html file does not return any text.

    if your objective is to use sql server to call and parse a web page, you will need to write an...

  • RE: Toad for SQL Freeware connection problem

    are you trying to connect to a named instance of SQl server, rather than a default instance?

    for example, my machine has a SQL7 instance and a SQL2000 instance.

    connecting to the...

  • RE: SQL Server 2000 Statistics

    I believe statistics are gathered when a table is queried, so that subsequent queries can be tuned to follow the path of previous queries;

    could it be that the tables with...

  • RE: ActiveX Script Resources?

    I hope this helps: if you take an html file and change it's extension to .xls, Excel translates the file beautifully, keeping all your table atrributes TR and TD and everything...

  • RE: HELP! SOX OUT OF CONTROL!@!

    there is a fascinating read here at SCC where the SOX auditors tried to say that the DBA must not have access to the production servers:

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=161&messageid=116604

    which is patently ridiculous,...

  • RE: Insert Child before Parent

    this is probably better for you than the long crap i posted:

    create table #tuser (type int, oname varchar(517), owner varchar(517), seq int)

    insert #tuser exec sp_msdependencies null, 3, null, null, 1

    select...

  • RE: Insert Child before Parent

    below is a procedure which returns all tables in the foreign key hiearachy order; it's copied and slightly adapted from scripts here at SSC;

    i would suggest the following:

    use this...

  • RE: Insert Child before Parent

    i think you missed the point that each insert statement is an atomic transaction;

    the begin tran is just a marker so that a group of atomic transactions can be rolled...

  • RE: Printing command lines

    I thought the issue might be because you are running it in Query Analyzer; by default, text is limited to 256 chanracters until you change it to allow up to...

  • RE: PDA to manage databases?

    if it's web enabled, it'd be a piece fo cake to make a mobile web page that allows you to do whatever functions you feel can be done by remote...

  • RE: help needed with xp_cmdshell

    two issues here. first, you forgot to quote the url, so if you tested the vbs file from a command prompt to see if it works, you'd see it errors...

  • RE: Removing blank space

    what happens to countries that have two part names, ie "United Kingdom", "United States", or "Federated States of Micronesia"?

    woudn't you compact them and turn them to wrong values?

     

  • RE: Sounds Like

    i though soundex didn't work if the value started with a number? so an address like 123 main street vs 321 main St was ineffective?

    select soundex('123 main street') = 0000

    select...

  • RE: Convert RTF data

    ok i just found an example on another forum that might help:

    create function dbo.RTF2TXT(@in varchar(8000)) RETURNS  varchar(8000) AS

    BEGIN

    DECLARE @object int

    DECLARE @hr int

    DECLARE @out varchar(8000)

    -- Create an...

  • RE: Convert RTF data

    i've used a quick and dirty vb app that has a RichTextBox control on it. it has a single function; I pass it an ADODB.Field, which it places int eh...

Viewing 15 posts - 13,246 through 13,260 (of 13,469 total)