Forum Replies Created

Viewing 15 posts - 6,736 through 6,750 (of 7,191 total)

  • RE: HELP WITH GROUP BY CLAUSE-URGENT

    Asim

    Have you tried

    GROUP BY YEAR(LossDate)

    and

    GROUP BY MONTH(From_Date)?

    John

  • RE: enabled AWE

    OK - if you want the operating system only to use 1GB of RAM (instead of the default of 2GB), which I presume you do since you've set SQL Server...

  • RE: SQL Install

    Harris

    I imagine that if you include the characters "password" in your password, then the setup program will construe that as not being a strong password.

    John

  • RE: Query output formatting problem

    Pivoting data in SQL Server 2000 can be done, but it's clumsy and cumbsersome.  Search this site - there are plenty of answers to this sort of problem.

    What I'd do...

  • RE: Same Column

    I suspect this might be to do with SET QUOTED IDENTIFIER.  Have a look at that topic in Books Online, then try altering your procedure so as to remove the...

  • RE: Same Column

    Please post your query, some DDL, sample data and expected results.  It's much easier for us to solve if you do that than it is if we have to try...

  • RE: enabled AWE

    Do you have the /3GB and /PAE switches in your boot.ini file?  Is your reporting server a dedicated SQL Server, or does it also do anything else?

    John

  • RE: How to prevent SQL Server lock the whole table?

    Before you use locking hints or change the transaction isolation level, make sure you understand the implications of what you are doing.

    Another road you may want to go down is...

  • RE: Jumping into deep end of Clustering and DTS...

    I think I'm right in saying that this was true in SQL Server 7.0, but not 2000.  You can now use Enterprise Manager or the SQL Server Service Manager to...

  • RE: Running a DTS from a stored procedure

    Jeff

    The dtsrun command is what you need for the first point.  It's a command-line utility so you don't need to call it from a stored procedure - you can use...

  • RE: Moving Data from Excel to Temp Table

    George

    You can use the OPENROWSET function to run a query against the Excel sheet, and then dump the results in the temp table.  The syntax for using the Jet OLE...

  • RE: Join question

    Michael

    You use the Jet OLE DB driver.  See the topic "OLE DB Provider for Jet" in Books Online.

    John

  • RE: Join question

    OPENROWSET is indeed what I meant.  You're right, the syntax is messy, and that's why it's best to use linked servers if you have sufficient access to add one.  From...

  • RE: Low Proc Cache

    I'm sure the 16GB /3GB issue is documented in lots of other places, but this is the first one I found:

    http://www.sql-server-performance.com/awe_memory.asp

    John

  • RE: T-SQL required

    Hemant

    Happy to help.  As for table variables, they do have a slightly different behaviour on the surface, but underneath they do the same thing: they are created in memory but moved...

Viewing 15 posts - 6,736 through 6,750 (of 7,191 total)