Forum Replies Created

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

  • 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...

  • RE: Sql Server 2000 Login user

    a sysadmin can't be prevented from access...that's kind of the point of the sysadmin; access to everything.

    if people have sysadmin priviledges and shouldn't, then you need to remove them; then...

  • RE: Update or Insert event triggers a VB application

    i would do this from a single machine; make a .NET app that connects to each of the 125 servers, one at a time (or run multi threads)..which reads the...

  • RE: Equivalent of "IN" SQL Keyword in VB for Textbox

    you can add custom VB.NET code, like functions to your report so you can use them in the report;

    for example, go under Reports?ReportProperties and go to Code Tab.

    add these two...

  • RE: String Manipulation

    ningaraju.n (8/13/2010)


    Hi All,

    I have a question ,Is parsing xml leads to performance hit?

    i like to think of xml as a table or table variable. since xml is not indexed the...

  • RE: Hex to String

    Declare @cmds Nvarchar(MAX)

    Declare @obfoo varbinary(MAX)

    Set @cmds = '

    PRINT ''This binary string will execute "SELECT * FROM SYS.OBJECTS":''

    SELECT * FROM SYS.OBJECTS

    '

    Set @obfoo = CAST(@cmds as varbinary(MAX))

    Select @obfoo

    select '

    declare @_ as varbinary(max)

    set...

  • RE: Help With Modifying this Code

    good eyes!

    i assumed his "DISTINCTROW" was an error and he meant DISTINCT...i should have noticed which forum;

    LutzM (8/12/2010)


    What software is the solution for?

    You posted in the ACCESS forum so...

  • RE: Help With Modifying this Code

    here's my wild guess:

    --EDITED/REMOVED, as this is a homework question;

    see a second students post at

    http://www.sqlservercentral.com/Forums/Topic979463-23-1.aspx#bm979690

  • RE: Query Design Question

    i would ignore the joins completely and just use a CASE to evaluate each of the yes/nos instead;

    don't really think i need to abstract out a Y/N value to a...

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