Forum Replies Created

Viewing 15 posts - 226 through 240 (of 325 total)

  • RE: Deadlock Problem Analysis

    if you are selescting from the table then use [with (nolock)] in Table hint to avoid making lock on the table

    advantage: faster ... no locks

    disadvantage: the data is not update...

  • RE: Slow SQL Server 2000 Performance

    what is your server amount of RAM ? bye the way MS SQL Server is a monster in dealing with RAM .. and if you give him more RAM .....

  • RE: SP not working the same SQL 2000 vs SQL 7.0 when exec from Access

    there are many another posible things you have to check :

    1- you must set the bit datafiled to NOT Null .. and so give it a default value .. it...

  • RE: SP not working the same SQL 2000 vs SQL 7.0 when exec from Access

    try to debug this SP by doing this:

    1- open query Analyzer ..

    2- right click on your stored procedure .. and choose debug ...

    (if a message appears tells you that...

  • RE: ACCESS to SQL (Upsizing)

    what Version of access you use ? (Access 97, 2000 or 2002 [XP])

    by the way Access 2002 [XP] is the best tool to upsize your application to SQL Server.

  • RE: Finding "all" SQL Servers on the domain

    what about opening Control Panel >> Data source (ODBC) ...

    and make a new DSN ... and choose SQL Server .. then in Server combo box .. you will find...

  • RE: MSDE Admin Question

    under your command prompet write (osql)

    then you enter to your database

    write

    DBCC DBREINDEX

    go

    also search on microsoft.com for any other articles on MSDE and how to use Osql

    by...

  • RE: MSDE Admin Question

    under your command prompet write (osql)

    then you enter to your database

    write

    DBCC DBREINDEX

    go

    also search on microsoft.com for any other articles on MSDE and how to use Osql

    by...

  • RE: Performance issues with MS Access 97.

    the best solution is to make a Stored procedurte on SQL Server ... then call it in Access by making a command and a Connection

    making a Stored procedurte on SQL...

  • RE: stored procedure in Access db

    also in your Form you can make a connection and command variables and call your SP with them ... and this is the best way to use SP in Access...

  • RE: stored procedure in Access db

    to execute Stored procedure in Access make a new query .. and in type chose Specific >> (Pass through query) ... then write what you want as if you are...

  • RE: stored procedure in Access db

    for dreating stored procedure ... Create a new Access Data Page (ADP) and adjust connection on your server (from file >> connection) .. then new queries .. then Design stored...

  • RE: Upgrade Trial Version to Fill version

    try to remove the folder of SQL Server Trial Folder ... and trace in regestery too for it to remove it.

  • RE: Alternative to cursor

    what about making a table with ID and result .... and in your stroed procedure: 1- delete all rows from table 2- insert All values into that table 3- select...

  • RE: How to handle permission from the front end.

    if you are using Access .. then use Access Security (Workgroup Admin) to make a file (filename.mdw) and adjust all users WorkGroup Admin to connect to this file ... another...

Viewing 15 posts - 226 through 240 (of 325 total)