Forum Replies Created

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

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • 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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Can you join on text?

    yes, it'll be a bit slow, because you'll have to convert the TEXT field to a varchar(8000);

    here's an examplei put together, note how i made a searchterm in a subquery,...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

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