Viewing 15 posts - 61 through 75 (of 1,183 total)
Search BOL for DISABLE TRIGGER... 🙂
and to check if enabled or disabled see ...
SELECT * FROM sys.triggers
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 25, 2013 at 12:01 pm
You're looking for the FIRST_VALUE function.
DECLARE @testData TABLE
([Industry] VARCHAR(2)
,[Naicstitle] VARCHAR(50)
,[NumMatch] INT)
INSERT @testData (Industry,Naicstitle,NumMatch)
VALUES
('00', '', 1025)
,('62', '',...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 25, 2013 at 11:57 am
I've not tested against 2012, you'll have to try and post back here if it does work.
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 17, 2013 at 9:51 am
This will get you the results you want. Maybe a bit overkill with the custom subscription part, but it's the only way I've found to do it.
http://www.sqlservercentral.com/articles/Reporting+Services+(SSRS)/69546/
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 17, 2013 at 9:21 am
Ok, there were multiple deadlocks over the weekend. Nearly all are fairly much the same as the log text below.
There is definitely something wrong with replication. Any thoughts, this isn't...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 14, 2013 at 11:53 am
Mark Fitzgerald-331224 (10/10/2013)
Jason Selburg (10/10/2013)
The Report then only needs one...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 10, 2013 at 1:19 pm
Personally, I'd move the decision logic to the procedure. have it accept both parameters as nullable, then handle your logic there.
The Report then only needs one dataset.
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 10, 2013 at 11:54 am
Thanks Gail, it may be tomorrow or later before 1. I get the permissions and 2. the deadlock happens again.
I'll let you know as soon as I have more...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 10, 2013 at 8:35 am
try this link ...
http://i129.photobucket.com/albums/p207/jselburg1970/deadlock.png
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 10, 2013 at 7:38 am
GilaMonster (10/10/2013)
Err.. where?
Ok, what are you asking? Where what? 🙂
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 10, 2013 at 7:24 am
I'll need to get permission from the client to turn on the trace, but in the meantime here is the limited information from the SQL Error Log.

** Each of these...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgOctober 9, 2013 at 4:06 pm
The server where the backup was created is 10.50.2500.0 or SQL Server 2008 R2 SP1, the version you are trying to restore to is 10.00.2531 or SQL Server 2008 SP1.
You'll...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgJanuary 10, 2013 at 8:15 am
deleted
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgDecember 31, 2012 at 3:27 pm
Why not drop the column after creation and before putting anything in it?
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgDecember 27, 2012 at 8:37 am
My understanding is the CMS allows for the logical grouping of your registered servers that can be shared in your organization.
It also allows you to run queries against all servers...
______________________________________________________________________
Personal Motto: Why push the envelope when you can just open it?
If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.
Jason L. SelburgDecember 21, 2012 at 11:21 am
Viewing 15 posts - 61 through 75 (of 1,183 total)