Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: List of databases on MSDE instance

    Here is a way to get a list of the db.

    It will only display dbs the user has access to

    SELECT name

    FROM master.dbo.sysdatabases

    WHERE

                   has_dbaccess(name) = 1

                   AND...


    myLittleTools.net :: web-based applications
    http://www.mylittletools.net

  • RE: import csv file into ms sql using "Web Data Administrator" ??

    You can contact me at support@mylittletools.net if you need more info about myLittleAdmin.

    Do not hesitate to download the trial version and to test the live demo (http://www.mylittletools.net/livedemo/mla_sql)

    As a...


    myLittleTools.net :: web-based applications
    http://www.mylittletools.net

  • RE: myLittleAdmin?

    Hi

    I am the author of myLittleAdmin : so yes ! it is worth installing it ! 🙂

    I just drop these couple of lines to remind you there 3 licences of...


    myLittleTools.net :: web-based applications
    http://www.mylittletools.net

  • RE: random query

    Hi

    You can try

    SELECT TOP 1 NEWID(), * FROM yourTble ORDER BY 1

    hth

    el.c.

    myLittleTools.net :: web-based applications

    http://www.mylittletools.net


    myLittleTools.net :: web-based applications
    http://www.mylittletools.net

  • RE: INSERT INTO - Help - "invalid object name"

    Hi

    Try to put brackets [ and ] around your table name. If the name contains spaces or is a special word, this error may occur.

    INSERT INTO [dstTable] (col1, col2, ...)...


    myLittleTools.net :: web-based applications
    http://www.mylittletools.net

  • RE: Need alternative to sp_databases

    You can try

    SELECT name FROM master.dbo.sysdatabases WHERE has_dbaccess(name) = 1 ORDER BY name;

    Regards

    el.c. (http://www.mylittletools.net)

    myLittleTools.net :: web-based applications


    myLittleTools.net :: web-based applications
    http://www.mylittletools.net

Viewing 6 posts - 1 through 6 (of 6 total)