Viewing 15 posts - 286 through 300 (of 452 total)
Thanks Gail; that did the trick (rather than the SSMS interface).
ALTER DATABASE DbName
SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
and then
ALTER DATABASE DbName
SET MULTI_USER
GO
Thanks,
Rob
November 15, 2012 at 1:59 pm
Okay, SSMS has come back and I can access that database -- but I never got a message saying it couldn't take the database offline. Hmm. Is a...
November 15, 2012 at 1:47 pm
I often find inherited SQL to be poorly formatted. Just getting things to line up helps me wrap my mind around what's going on.
My first step is to copy...
November 14, 2012 at 8:42 pm
Assuming that your fields are always five characters long, would this work:
CREATE TABLE #Temp (Id int IDENTITY(1,1), PartNum varchar(5))
INSERT #Temp (PartNum) VALUES
('12345'),
('00123'),
('10000'),
('A1234'),
('12A34'),
('0A123'),
('000A1'),
('00D21'),
('00E33');
SELECT PartNum,
CASE
...
November 13, 2012 at 5:37 pm
komal145 (11/13/2012)
Hi...I want the count of loannumber when month=7 .
My expression as below.Its returning no value.
=IIF(
(DATEPART("m", Fields!MONTH_2.Value) = DATEPART("m", DATEADD("m", -4, Parameters!V_COPYDATE.Value))) ,CountDistinct(Fields!Loan_Number.Value),NOTHING)
Break it down into parts. Add temporary...
November 13, 2012 at 5:11 pm
Since SSRS is just generating HTML when it renders your rerport, I'd guess it's a difference in how the three browsers display the HTML. Though I wouldn't know why...
November 13, 2012 at 5:03 pm
Paul Moss (11/12/2012)
November 12, 2012 at 8:02 am
If you format your data sections, it makes your question a little easier to read. Is the IFCode Shortcuts on the left-hand side of your window like:
END_APOL_NO END_NUM1 END_LIMIT1...
November 12, 2012 at 7:31 am
Sorry, I'm not an AX guy, so I don't know if there's something in the product that lets you backup your security settings. I was thinking this was your...
November 12, 2012 at 7:20 am
aslorenzo (11/11/2012)
Every time we add a new field to an OLAP cube, in the roles...
November 11, 2012 at 2:58 pm
mohammed moinudheen (11/11/2012)
sanket kokane (11/8/2012)
if you are lucky and you have copy of these db...
November 11, 2012 at 2:47 pm
A Bing search shows that there is a project on CodePlex called CrissCross that might do what you're after.
It can be found at: http://crisscross.codeplex.com/
The description on the site says:
CrissCross is...
November 8, 2012 at 9:04 am
It sounds like the backup is corrupt; try redownloading from CodePlex.
HTH,
Rob
November 5, 2012 at 2:57 am
Let me add to the kudos; great article -- well done.
Thanks,
Rob
November 3, 2012 at 5:07 pm
Katherine,
Did you ever find a solution for this?
I'm in a similar position. I wanted to test a few things in PowerPivot (Using Office 2010 32-bit) -- everything works like...
November 3, 2012 at 2:15 pm
Viewing 15 posts - 286 through 300 (of 452 total)