Forum Replies Created

Viewing 15 posts - 1,771 through 1,785 (of 3,232 total)

  • RE: Is there a sql function to split strings?????

    Search this site for 'split' and you'll find a number of split functions.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: DTS Package for retrieving contents from FTP

    pvnlaks.mscis,

    What makes your problem similar? Are you having problems with the FTP part or the XML part? I would suggest starting yourself a new thread with a...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: DTS Package for retrieving contents from FTP

    The first question I'd ask is, can you import the data directly into Oracle using Oracle utilities? When I worked with Oracle, there was a utility called SQL*Loader that...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How to query one to many

    Good solution Lynn. For some reason, I was thinking that the termcd values were not all known, hence the need for a pivot as I was actually thinking of...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: release memory

    DBCC FREEPROCCACHE removes the stored execution plans from cache. I don't think this actually 'frees' memory from the SQL Server process. If you've read otherwise; please post the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How to query one to many

    The query to pull back the data with the aggregate values is quite simple.

    SELECT Unique_ID, tempcd, COUNT(*)

    FROM TableA

    WHERE calldate > DATEADD(dd,-7,GETDATE())

    GROUP BY Unique_ID, tempcd

    It looks, though, like you...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: query

    Mike,

    Here's a good link that'll help you get better help with your questions.

    http://www.sqlservercentral.com/articles/Best+Practices/61537/

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Having Issues with multiple @@IDENTITY in Stored Procedure

    This may be a silly question, but does the Addresses table have an IDENTITY column?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Retricting access to DB objects for certain users

    Enterprise Manager is not a user tool. It is an administration tool. Don't give a plain-Jane user EM.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: release memory

    SQL Server will grab as much memory as it can (up to the sp_configure 'max server memory (mb)' setting). It will not release it without re-starting the service. ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Truncate table error

    You must drop the FK and then add it again after the TRUNCATE.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: List of all options and the ones selected - from two tables

    What Antonio has posted is as good of an answer as you'll get without us knowing more about your tables. Since you're a new poster, check this link out...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: sqlservr.exe memory usage question

    Or, you could use QA and run a sp_configure:

    sp_configure 'max server memory (MB)', 1024

    GO

    RECONFIGURE WITH OVERRIDE

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Is my SQl query right?

    Just an observation here, but why not just leave the GUID value alone when you move the row to another table? Wouldn't this help you with relating the data...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Blank Line at the end of query output

    What problem does the blank line cause you?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 1,771 through 1,785 (of 3,232 total)