Viewing 15 posts - 3,376 through 3,390 (of 6,486 total)
Phil Factor (5/9/2008)
May 9, 2008 at 11:45 am
declare @yearnum int
set @yearnum=2008
set @yearnum=@yearnum-1900
SELECT CONVERT(varchar, Event.EventDate, 110) AS Date, Player.PlayerFName AS Players, Scard.Ranking AS Ranking
FROM Scard INNER JOIN
Event ON Scard.EventID = Event.EventID INNER JOIN
Player ON Scard.PlayerID = Player.PlayerID
WHERE
Event.eventdate...
May 9, 2008 at 11:34 am
Are you by chance running SQL Server Express Edition? If so you may need to download SSMSEE (SQL Server Management Suite for Express Edition) separately.
You can find that here:
Note...
May 9, 2008 at 11:31 am
Ashley Fawcett-Jones (5/9/2008)
May 9, 2008 at 11:16 am
Michael Earl (5/9/2008)
I think having a quantity of "411 Elm Street" indicates some overstock.I would put them on sale.
Stop - that would be a nightmare. And...
May 9, 2008 at 11:02 am
bitbucket (5/9/2008)
From BOL:
The result sets combined using UNION must all have the same structure....
May 9, 2008 at 10:54 am
kevin mann (5/9/2008)
Why the prohibition from using SCOPE_IDENTITY (which would be your solution in this case)?
I don't know... ask the authors of Access. I cannot control which identity is...
May 9, 2008 at 10:33 am
jthorpe (5/9/2008)
May 9, 2008 at 10:19 am
Interestingly enough - it's kind of a "heretical" version of 6NF, where you essentially end up with many tables each essentially holding a key and a data column. Heretical...
May 9, 2008 at 10:06 am
dfalso (5/9/2008)
Jeff Moden (5/6/2008)No... no Reporting Services or Excel required. Take a peek in Books Online for "cross-tab reports" in SQL Server 2000 or follow the following URL...
http://msdn.microsoft.com/en-us/library/aa172756(sql.80).aspx
They're very...
May 9, 2008 at 9:47 am
jburkman (5/9/2008)
May 9, 2008 at 9:00 am
Darryl864 (5/9/2008)
May 9, 2008 at 8:04 am
jpchiu (4/30/2008)
delete the tempdb.mdf under your program files\Microsoft SQL Server\MSSQL.x\MSSQL\data folder
restart your sqlserver
this will recreate the tempdb back to the initial size by default (8MB) if you didn't...
May 9, 2008 at 7:50 am
What is usually done in these cases is to create a temporary table mirroring your existing table, with the correct identity seed and increment, then copy the data over, and...
May 9, 2008 at 7:47 am
From what you're describing - I'd actually steer clear of the script component, and look into the conditional split task instead. In other words - split your data on...
May 8, 2008 at 3:20 pm
Viewing 15 posts - 3,376 through 3,390 (of 6,486 total)