Viewing 15 posts - 4,651 through 4,665 (of 6,400 total)
You would create a condition on the database facet, for the name object and give it the names of the DB's you want it to check, then it uses that...
June 13, 2012 at 1:30 am
You could use dynamic SQL
DECLARE @UseIt varchar(20)
DECLARE @Grade int
DECLARE @AppleFlag int
DECLARE @PearFlag int
DECLARE @BananaFlag int
DECLARE @sql NVARCHAR(MAX)
SET @Grade = 8
SET @AppleFlag = 0
SET @PearFlag = 0
SET @BananaFlag = 0
SET @sql...
June 13, 2012 at 1:15 am
You want to go for the lowest level of access, so I would create 2 domain accounts one for the SQLServer and one for the SQLAgent, just basic bog standard...
June 13, 2012 at 1:00 am
Revenant (6/12/2012)
SQLDBA360 (6/12/2012)
anthony.green (6/12/2012)
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
wesley sneijder
tulips
Amsterdam
June 12, 2012 at 8:59 am
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
Viewing 15 posts - 4,651 through 4,665 (of 6,400 total)