Viewing 15 posts - 616 through 630 (of 9,641 total)
I'm not aware of anyway to do this. SSRS doesn't really give you control over the parameters when using Report Manager.
October 14, 2014 at 11:27 am
Duplicate post. Please post answers to this topic, http://www.sqlservercentral.com/Forums/Topic1625532-391-1.aspx
October 14, 2014 at 11:20 am
You have to use a tool, but MS has one, http://www.microsoft.com/en-us/download/details.aspx?id=40740
October 14, 2014 at 11:12 am
As ZZartin has said, ISNUMERIC() = 1 doesn't guarantee that the value can be CAST to a NUMERIC type. You'd think that would be how it would work, but...
October 14, 2014 at 11:11 am
Steve Jones - SSC Editor (10/14/2014)
Is quoting and general access slow for anyone else today?
I have noticed in the past couple of weeks that SSC pages have had "random" performance...
October 14, 2014 at 9:04 am
I'm very rarely passionate about the software I'm working on. I am passionate about how the software is developed and always make an effort to provide the best solution...
October 14, 2014 at 6:48 am
mcfarlandparkway (10/13/2014)
Thank you champion, when ever we want to see the results form log table we can simply do select with order by date..right.?
Yes
October 13, 2014 at 1:50 pm
I don't think you really want to put your clustered index on the UpdateDate, you may want a non-clustered index, but not the clustered index. Here's a good read...
October 13, 2014 at 1:29 pm
mcfarlandparkway (10/13/2014)
You are right,this needs to be done in application. we are using jqgrid,the data which is populated in the grid has
id description date
34 'present'...
October 13, 2014 at 1:25 pm
Well, you haven't told us a few things:
1. Where you want this enforced, the application, the database, or both?
2. How you are controlling updates? Is it SQL...
October 13, 2014 at 12:54 pm
Grant Fritchey (10/10/2014)
You might want to look into external management of this type of long running distributed transaction. The BizTalk server[/url] is build around managing this sort of thing..
I agree...
October 13, 2014 at 7:30 am
I'm assuming you don't want the DELETE to occur if the insert fails. The biggest issue with doing it this way is that you need DTC to be working...
October 10, 2014 at 10:51 am
In SQL you use a WHERE clause to limit results. So in your example your query would like this:
Select * from dbo.Dogs Where Name IS NULL
NULL represents unknown in...
October 10, 2014 at 10:40 am
Just a guess, but I'd bet the NVARCHAR(MAX) columns that are being included are small enough to be stored in-row so tablediff is considering it as NVARCHAR(N).
I did...
October 9, 2014 at 11:45 am
The first thing I'm going to suggest is installing sp_WhoIsActive by Adam Machanic as it will show you the command and the tempdb usage by each command.
Second, ...
October 9, 2014 at 11:06 am
Viewing 15 posts - 616 through 630 (of 9,641 total)