Forum Replies Created

Viewing 15 posts - 796 through 810 (of 2,486 total)

  • RE: Newbie Feeling Inadequate!!!

    "But now I cannot connect with my web pages. I have so much SQL written into my VBScript code, I dont know if it is good with SQL Server or...

  • RE: SQL 2000 Database DTS To Access Questions

    have not been able to preserve the Primary and Foreign Key relationships between the tables in the Target Access Database."

    Are you referring to items like auto numbers, etc... This can...

  • RE: Moving DTS Packages

    Personally I prefer DTSBackup2000 http://www.sqldts.com/default.aspx?242

    But, like everything with SQL there are many ways. Try this for transferring directly from the table http://www.sqldts.com/default.aspx?204

    Always be aware that if the package...

  • RE: how to get information?

    Rudy, That's probably what I'm thinking of then.

    Homebrew01, Honestly, I wouldn't run this at all. There are plenty of easier ways to get this information is a much more "usable"...

  • RE: Memorable Signatures

    First one for sushila...

    First, God created man. Then he had a better idea


    A couple from Monty Python, always a source of enjoyment

    "And now for something completely different..."

    "I don't wanna talk...

  • RE: SQL Central Servers in pain???

    Actually, if the guys didn't run such a good site we wouldn't be here in the first place.

    So I guess the onus is back on them

  • RE: how to get information?

    Yes you can query the system tables, but I was talking about a single command.

    It might have been in an earlier version of SQL Server. It showed the basic...

  • RE: Product Concept Input Requested

    So will this be a CMS type system along the lines of http://www.dotnetnuke.com, or an application/code generation tool along the lines of CodeSmith, ASPRunner.Net, ASPMaker.Net, etc...

     

  • RE: Checking for value in select?

    So just take the field out of the select, or concatenate it with the name, or use a case, or ...

     

  • RE: Checking for value in select?

    You can achieve this using a derived table.

    select 
        t1.id
        , t1.name
        , t2.childcount
    from mytable as t1 
      left join ( 
            select 
                parentid as id
                ,...
  • RE: Can I use Outlook 2003 Client with SQL 7?

    Save yourself the problems of working out what is compatible with what and worrying about MS Exchange connectivity and security.

    Install xp_smtp_sendmail from http://www.sqldev.net there are versions of the DLL...

  • RE: EOD

    Ok, first thing you need to do is get rid of the cursor. If you take a set based approach you'll find your performance will increase dramatically. Now as this...

  • RE: how to get information?

    Sorry, I help people reach their goals, I don't do their work for them.

    If you can't take the information I've provided and re-build your query, I'm not going to do it...

  • RE: how to get information?

    "what do u mean about seriousness.

    Do this is the way u ask a person who need help?"

    Given your history, under this and other usernames on this forum, yes this is...

  • RE: SQL Script that list total database size on server

    Use this bit to get the results without using a cursor. Replace <<mydb>> with a database that exists on your server.

    if not exists (select * from dbo.sysobjects where id...

Viewing 15 posts - 796 through 810 (of 2,486 total)