Forum Replies Created

Viewing 15 posts - 11,416 through 11,430 (of 13,462 total)

  • RE: what or where is this?

    profiler will not show much more than an attempt to login, so that won't help much.

    i think the key is to nslookup or ping 10.15.101.24

    is that the server itself, or...

  • RE: Out of date statistics

    ok i put together a script i thought would identify statistics that might need to be updated...

    but when i run the results of the script, a few of the tables...

  • RE: Out of date statistics

    Krishna (3/16/2009)


    Do not put Autoupdate stats ON, it does affect your database performance. I would prefer running a job to update statistics now and then after analyzing the data.

    AFAIK, disabling...

  • RE: Drop All Users in the Database

    i just slapped this together.

    i'm using sp_revokeaccess instead of sp_dropuser, because the users might be orphaned and not tied to a login;

    this yanks them out the way i expected:

    [font="Courier New"]ALTER...

  • RE: A theoretical flat file database, how could it work well?

    when i think "database", i think SQL server, so that multiple connections can get to a source of data and select/insert/update.

    i think of a flat file as a snapshot ofdata...

  • RE: A theoretical flat file database, how could it work well?

    in .NET, your Datasource has the ability to .WriteXML(pathToFile) and .ReadXML(pathToFile), so it's very easy to load tables into your dataset form say, SQL server, and then write them to...

  • RE: Trigger Issue forUpdation

    the virtual table INSERTED, which exists only for the duration of the trigger, has all the records that were updated.

    if you show us your current trigger in SQL, we can...

  • RE: T-Sql rant

    a cursor is like the add + function, where set based is like multiplication.

    Using addition as

    yeah you can do 2+2+2+2+2+2+2+2 = 16, because that's what you are used to,...

  • RE: T-Sql rant

    the only things you identified so far is a slight shortening of a couple of keywords....saving a handful of keystrokes doesn't mean that's an improvement, just a preference.

  • RE: change first 12 characters from numbers to ****

    same thing, different way:

    [font="Courier New"]UPDATE mytable

    SET myfield= '************' + RIGHT(myfield,4)

    WHERE LEN(myfield) = 16 --only change items that are exactly 16 chars

    SELECT * FROM mytable WHERE LEN(myfield) <> 16 [[/font]

    ...

  • RE: PHP with MS SQL SERVER CONNECTIONS

    do not spam the same question into multiple forums. it was's everyones time and disjoints all the answers.

    everyone uses the "View Latest Posts", so you need to post this only...

  • RE: PHP with MS SQL SERVER CONNECTIONS

    do not spam the same question into multiple forums. it was's everyones time and disjoints all the answers.

    everyone uses the "View Latest Posts", so you need to post this only...

  • RE: PHP with MS SQL SERVER CONNECTIONS

    do not spam the same question into multiple forums. it was's everyones time and disjoints all the answers.

    everyone uses the "View Latest Posts", so you need to post this only...

  • RE: PHP with MS SQL SERVER CONNECTIONS

    do not spam the same question into multiple forums. it was's everyones time and disjoints all the answers.

    everyone uses the "View Latest Posts", so you need to post this only...

  • RE: SQL data export to end customer setup ?

    I've done something similar, but made sure it was an application that happens to conenct to SQL server, not do it via SQL server itself.

    .NET DataSource object has the ability...

Viewing 15 posts - 11,416 through 11,430 (of 13,462 total)