Forum Replies Created

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

  • RE: remote connection

    Use Replication. Create a Publisher/Distributor on the central server, then set up transactional or merge subscriptions to the 4 satellites on a regular basis.

  • RE: a very wierd one...mite put ur experience to real test

    You are probably only seeing tables that your login has been granted access to. That is the most likely scenario. Are you able to open and use the Management...

  • RE: a very wierd one...mite put ur experience to real test

    You are probably only seeing tables that your login has been granted access to. That is the most likely scenario. Are you able to open and use the Management...

  • RE: a very wierd one...mite put ur experience to real test

    What user are you logging in as? SA?

  • RE: sp_executesql bug?

    Try NULL instead of DEFAULT.  DEFAULT is a keyword that is not in context for this use.  Generally, DEFAULT is NULL as far as SP/UDF parameters go; you can supply...

  • RE: a very wierd one...mite put ur experience to real test

    Are you getting back one record? Or 1000?  If you are getting 1000, I would tend to agree with JackSteezo - Otherwise, please post your entire t-sql statement for us...

  • RE: xp_ExecResultSet

    You are absolutely correct about undocs - And I have even heard it coming out of my mouth.  It must have been a moment of weakness at some point...

  • RE: Writing a VFP Remote view to join 2 SQL Server 2000 tables

    I think that the easiest way to do this would be to create a view in DB1 that exposes the table in DB2 and then construct the query from DB1...

  • RE: potential problems with sp_OACreate permissions

    I can tell you exactly what security problems you could encounter:

    EXEC @hr = sp_OACreate 'Scripting.FileSystemObject', @toNewObject OUT

    Use your imagination for ideas on how anyone who gets access to the oa...

  • RE: information_schema views

    wz700 - Thanks for the hint - I followed up on your suggestion: Check on sp_helptext [information_schema.tables] to find it out.

    As with my direct select attempt, it works fine on...

  • RE: information_schema views

    No, it isn't, but that was a good thought - this works on every other db I have - I'm beginning to think this is an anomoly, but if anyone...

  • RE: Checking a Stored Procedure for a specific comment using VB.NET

    We do it something like this:

    create procedure yadayada
    (...
    ...
    @pVersion char(2) = NULL) 
    AS
    declare @lVersion numeric(10,2)
    
    
    SELECT @lVersion=1.01
    IF (UPPER(COALESCE(@pVersion,'')) = '-V')
    begin
    SELECT @lVersion as [SPVersion]
    return
    end
    ...
    return

     This helps us determine within the app if we...

  • RE: View Refresh Issue

    This has bit me recently as well.  I have decided that the simple solution is to stop using * and list out the columns - it makes it larger and...

  • RE: How to return SP or query data to a Text File

    I have used the sp_OA procedures to create and use instances of the File System Object found in scrrun.dll, but these are fraught with security implications and take a lot...

  • RE: QOD 13/10/2003

    You did not spend one too many thoughts - This one was poorly worded and incorrect. My first instinct was was nocheck, but the *temporary* word is the key.

    <RANT>...

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