Viewing 7 posts - 1 through 7 (of 7 total)
declare @startdate datetime, @enddate datetime
select @startdate = '1/2/1996'
select @enddate = '1/4/1998'
select datename(m,OrderDate) + ' ' + Convert(char(4),year(OrderDate)) mon, count(*) cnt
from Northwind.dbo.Orders
where OrderDate between...
July 7, 2005 at 9:23 am
BWalker and one of my workmates found the answer. You right-click the "Stored Procedure Code Window" and choose "font" from the list. This brings up the standard "Windows font selection"...
January 21, 2004 at 12:38 pm
In the process of installing a new high-performance server (fiber optic disk, lot's of ram, new Windows Server 2003 OS, SQL Server 2003), we've been getting "torn page" messages regularly....
October 27, 2003 at 10:29 am
Seems like you should just use a "union" query ...
Select * From table1
Union
Select * From table2
Union
...
Select * From table20
October 3, 2003 at 8:26 am
The "outer join" solution shouldn't have been necessary.
All sales-detail product id's should have been in the products master table making the outer join unnecessary.
Seems to me there are...
May 15, 2003 at 9:17 am
Here is the source code so far. Not all the database sources are programmed yet.
You'll notice the search criteria in the "where" sections are slightly different
(as each source has different...
May 1, 2002 at 10:48 am
Just to make clear, the stored procedure I'm alluding to has six sections. Each uses the search criteria to add rows to a temporary table. When all six sources have...
April 19, 2002 at 12:44 pm
Viewing 7 posts - 1 through 7 (of 7 total)