Viewing 15 posts - 4,651 through 4,665 (of 6,395 total)
From this weeks weekly email
http://www.computerworld.com/s/article/9227712/AMD_adds_server_horsepower_with_16_core_chip
SQL2012 License Cost for 1 CPU $109,984.00 or if you get the BL485G8 with 2 chips £219,968.00 😀
Then of course you want to get it with...
June 12, 2012 at 8:36 am
this is my take on sample data and a solution
DECLARE @Forum_Posts TABLE (PostID INT IDENTITY, Subject NVARCHAR(100), Body NVARCHAR(100), CreatedDate DATETIME, ThreadID INT)
INSERT INTO @Forum_Posts VALUES ('Sub1','Bod1',GETDATE(),1)
INSERT INTO @Forum_Posts VALUES...
June 12, 2012 at 7:45 am
could you provide some sample data and the expected outcome based on that sample data (see the second link in my signature for help should you need it)
June 12, 2012 at 7:26 am
Daniel Bowlin (6/12/2012)
anthony.green (6/12/2012)
Ray K (6/12/2012)
Stanley (as in Cup -- congrats, LA!)Knife
Blade
Wesley Snipes
June 12, 2012 at 7:09 am
bodged together some sample data to match the what the OP has provided so far and a couple of scripts to get the information out but will need more data...
June 12, 2012 at 7:05 am
No problem, as I said in the comments as well make sure you pick the right function depending on what your want your ranking column to look like.
June 12, 2012 at 6:53 am
I dont think there is in SSRS, but you could change the data set to include the RANK or DENSERANK function depending what you need then show that in the...
June 12, 2012 at 6:23 am
Again provide data and table sturctures and we can help you out (see the second link in my signature if you need help)
June 12, 2012 at 6:15 am
Ray K (6/12/2012)
Stanley (as in Cup -- congrats, LA!)
Knife
June 12, 2012 at 6:13 am
June 12, 2012 at 4:24 am
SSIS is not instance aware, it is server aware and is only used to query MSDB/FileSystem to list the packages stored within it when you connect to a SSIS server...
June 12, 2012 at 4:19 am
Can you provide sample data, ddl statements, expected outcome?
June 12, 2012 at 3:15 am
freecoder (6/12/2012)
June 12, 2012 at 2:59 am
Whats the reason behind having the blank titles in the second rows for each AID?
CREATE TABLE [dbo].[abcd](
[Aid] [int] IDENTITY(1,1) NOT NULL,
[Title] [varchar](50) NULL
) ON [PRIMARY]
insert into abcd (Title) values ('test1')
insert...
June 12, 2012 at 2:41 am
Viewing 15 posts - 4,651 through 4,665 (of 6,395 total)