Viewing 15 posts - 6,736 through 6,750 (of 7,191 total)
Asim
Have you tried
GROUP BY YEAR(LossDate)
and
GROUP BY MONTH(From_Date)?
John
November 13, 2006 at 8:48 am
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...
November 9, 2006 at 8:14 am
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
November 9, 2006 at 7:00 am
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...
November 9, 2006 at 3:47 am
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...
November 9, 2006 at 2:50 am
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...
November 9, 2006 at 1:30 am
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
November 9, 2006 at 1:22 am
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...
November 8, 2006 at 9:55 am
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...
November 8, 2006 at 9:12 am
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...
November 8, 2006 at 8:38 am
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...
November 8, 2006 at 8:22 am
Michael
You use the Jet OLE DB driver. See the topic "OLE DB Provider for Jet" in Books Online.
John
November 8, 2006 at 6:49 am
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...
November 8, 2006 at 6:39 am
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
November 8, 2006 at 2:16 am
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...
November 8, 2006 at 2:07 am
Viewing 15 posts - 6,736 through 6,750 (of 7,191 total)