Forum Replies Created

Viewing 15 posts - 6,586 through 6,600 (of 7,429 total)

  • RE: how to call a function in sql server

    First it is the Function Owner (which may be the same as the DB owner) and yes you have to specify it. If this is a problem then post your...

  • RE: copy stored procedures

    Open Enterprise Manager

    Drill thru to your server then to the database.

    Right click the database in the tree view side of EM and select All Tasks/Export Data...

    Now in the Wizard go...

  • RE: How to use Soundex and Like in a single query ?

    Cannot do this will soundex as it translates the whole phrase in the column and not the words. You could however right a procedure that looped thru all the words...

  • RE: Connection Failed error

    I had this problem and for me it was related to the MDAC installed (may have been just one of the dlls not registered properly). When I reinstalled the problem...

  • RE: WScript error... (maybe for DMO column?)

    How is Agent configured as far as account runs under. It may not have the enough rights to access the file system and most likely unless you have an account...

  • RE: query weirdness (locating [ character)

    Yeah, like uses [ as the begining delimiter for a list of character replacements.

    Example.

    If you wanted to find a list of items that started with A, C, D, or G...

  • RE: better SoundEx routine

    Nothing in SQL itself that will do this any better. You might check for a third party app but most use roughly the same algorithem but may have data dictionarys...

  • RE: notification to an application or a 3-party tool

    You could also write an XP dll to do pretty much anything you cannot do directly in SQL in this case (such as sending data to a server using UDP...

  • RE: sql to sql transfer

    And going back to your original question, the TDS I do not believe is enrypted in any unless you use multiprotocol with encryption turned on and so is visible to...

  • RE: which query is more efficient

    If you are talking about data entered in the text area, once gone then no.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: View vs.Select

    If however each SP has variances in the SELECTion field output then a common view can actually hurt performance since (as I have come to understand) the view will read...

  • RE: date based auto generation

    I was working on a Sample I forgot to bring home, but the only way could think of is similar to an old trick in Access. Create a table with...

  • RE: Executing an Oracle stored procedure.

    Great to hear you are at least finding a way.

    "Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)

  • RE: How can I add these fields?

    Sorry doing this from the top of my head, no server to test against and no analyzer with nice color coding.

    "Don't roll your eyes at me. I will tape them...

  • RE: selecting rows randomly from a table or database

    Not really fancy but you could try something like this

    DECLARE @var AS INT

    SELECT @var = RAND( (DATEPART(mm, GETDATE()) * 100000 )

    ...

Viewing 15 posts - 6,586 through 6,600 (of 7,429 total)