Forum Replies Created

Viewing 15 posts - 1,816 through 1,830 (of 1,993 total)

  • RE: Access 97 passthru query - how does it work

    there are some network throttling (and monitoring) tools that you can download (we used them to simulate moving from citrix published apps to a Client/server app over the WAN.

    i'm not...

    MVDBA

  • RE: Access 97 passthru query - how does it work

    not quite that way,

    access calls gets the results steadily using as much network bandwidth as it can.

    the reult set is available immediatley, (which is why you can navigate quickly...

    MVDBA

  • RE: To choose replication type: I am confused

    if this is a one way process (from pub to sub) then have you considered using log shipping ?

    MVDBA

  • RE: Down-grade

    according to microsoft docs you can't.

    what you could do though is back up your user databases and uninstall sql server - then install sql standard and restore your databases.

    proboably best...

    MVDBA

  • RE: Virtual Log File Size

    just out interest, if you switched to simple mode, why did you back up the log ??

    just run a checkpoint command????????

    MVDBA

  • RE: Access 97 passthru query - how does it work

    sql server and access will drip feed the results through the connection.

    what you can do to give your users the perception of a faster connection is use the FAST...

    MVDBA

  • RE: How Do I Conditionally Create a Stored Procedure

    you could write out the stored procedures to text files and then use ISQLW.exe to run them.

    that way you can use xp_cmdshell to call ISQLW

    MVDBA

  • RE: How Do I Conditionally Create a Stored Procedure

    declare @strsql nvarchar(4000)

    if (select system_user)='mike'

    begin

    print 'True'

    set @strsql='create procedure usp_test as select NULL'

    exec sp_executesql @strsql

    end

    else

    begin

    print 'False'

    set @strsql='create procedure usp_test as select NULL'

    exec sp_executesql @strsql

    end

    MVDBA

  • RE: Converting Foxpro Data to SQL Server 2000

    you can import data from foxpro fairly easily.

    right click on your new database and select all tasks, then choose import data.

    as your source choose the driver for Visual...

    MVDBA

  • RE: Execute Successful but No Records

    the problem is that your stored procedure is returning the nuber of rows inserted into you temp table as the first result (which the app will pick up)

    all you...

    MVDBA

  • RE: SQL Server and NLB on Win2003 Standard

    we support several systems that fall into these categories.

    you were wondering if your front end application will work with a clustered active/active (load balancing) solution - most likely...

    MVDBA

  • RE: Error 8646 - index entry not found

    try the query

    select name from sysobjects where id=2057058364

    this should tell you the table name

    MVDBA

  • RE: Querying views

    can you post the view code.

    MVDBA

  • RE: Performance Alert

    not as far as i'm aware.

    but what you could do is set the idle state in SQL AGENT as below 80% for 2 minutes.

    what you can then do is perform...

    MVDBA

  • RE: Performance Alert

    from books on-line

    ***********************

    SQL Server Agent polls the performance counters at 20-second intervals.

    Important Using a frequency higher than 20 seconds increases the processing overhead for SQL Server.

    If a counter...

    MVDBA

Viewing 15 posts - 1,816 through 1,830 (of 1,993 total)