Forum Replies Created

Viewing 15 posts - 8,926 through 8,940 (of 13,469 total)

  • RE: How to tell difference betwwen empty string and one or more blanks

    sgambale (8/17/2010)


    Thanks for the replies. It makes sense that 1, 2, or 3 blanks is treated the same (with the entire column filled with blanks), but the empty string...

  • RE: Error in Generating scripts

    if you used the GUI, you can rename a stored procedure without having changed it's underlying definition. that was at least true in SQL 2000 with Enterpise Manager.

    so i could...

  • RE: DENY DROP TO DB_DDLADMIN

    balasach82 (8/17/2010)


    Its ok if the user can delete his own tables, But other than the using trigger is there no way to stop the user from dropping other's tables?

    that is...

  • RE: How to tell difference betwwen empty string and one or more blanks

    the LEN() function ignores trailing spaces, even on a CHAR data type, where the DATALENGTH() function respects the spaces;

    so to find exactly two trailing spaces in a column:

    SELECT * FROM...

  • RE: DENY DROP TO DB_DDLADMIN

    balasach82 (8/17/2010)


    How Deny DROP access to a db_ddbladmin user. The user needs to create tables/views/sp's etc

    you cannot modify the built in roles in any way;

    what you want to do is...

  • RE: INSERTED Table for Update Trigger

    ok i'm pretty sure you are pasting untested code, because the tables you pasted do not have the same column names as the trigger;

    i'm not surprised nothing seems to work...the...

  • RE: INSERTED Table for Update Trigger

    well, the way i read your trigger, it should be working just fine.

    if you run this commnad, do you see changes in the status?

    SELECT i.AppointmentUID,i.AppointmentStatusUID,StatusStartTime

    FROM AppointmentStatusTransactions

    GROUP BY i.AppointmentUID,i.AppointmentStatusUID,StatusStartTime

    ...

  • RE: INSERTED Table for Update Trigger

    the UPDATE() function is so misleading.

    the UPDATE() tests to see if the column name was specifically included/named in the update or not...it does not test if a value changed.

    what...

  • RE: Data type I don't understand (COMMENT(int),null)

    ok, now it sounds like they added a custom data type; no big deal, but a bit harder to figure out.

    In SQL, you can declare your own datatype, and decide...

  • RE: SMS TO MOBILE

    eni11_g (8/16/2010)


    pls help me with how to use sql server 2000, or 2005,2008 to send sms to mobile number if transaction is made on the database

    every carrier has support for...

  • RE: SQL Server on Unix

    it's not possible. SQL Server will only run on a Windows operating system. so you can access and use a sql server from unix, but it cannot be hosted on...

  • RE: Data type I don't understand (COMMENT(int),null)

    Jeff run this command:

    EXEC sp_help gl_text

    a lot of results weill come up, but towards the bottom you should find all the foreign kesy in the table...scroll right...

  • RE: Problem connecting to SQL Server over firewall

    servername\instancename is resolved by the WINS service and the SQL browser. that's not exposed to the WAN, just TCP/IP addresses.

    since you are using a firewall to the outside world, you...

  • RE: VBscript recordset Opens are very slow

    whenever you upgrade a system, or restore a database to a higher version, as i understand it the statistics used to get the database may be mis-interpreted by the newer,higher...

  • RE: Sql Server 2000 Login user

    well lets try an example;

    I invite everyone to build off this example and offer better suggestions.

    lets say YourDomain\bob and YourDomain\tom are users who currently are in the builtin\Administrators group, have...

Viewing 15 posts - 8,926 through 8,940 (of 13,469 total)