Viewing 15 posts - 31 through 45 (of 183 total)
I believe you have already highlighted the issue - the value is reverting back to its "default" value. 🙂
If you check the parameters on the sub report (and parent report)...
April 12, 2013 at 7:16 am
Try this:
/*First off - lets disable*/
IF EXISTS ( SELECT
*
FROM
sys.fulltext_indexes fti
WHERE
fti.object_id = OBJECT_ID(N'[dbo].[InsertYourObjectNameHere]') )
ALTER FULLTEXT INDEX ON [dbo].[InsertYourObjectNameHere] DISABLE
GO
/*Then lets drop the index*/
IF EXISTS ( SELECT
*
FROM
sys.fulltext_indexes fti
WHERE
fti.object_id = OBJECT_ID(N'[dbo].[InsertYourObjectNameHere]') )...
April 12, 2013 at 6:54 am
Awesome script, I had most of these in separate scripts and now have a combined solution - thanks! 🙂
I did get one error, and fixed it by with this:
IF OBJECT_ID('tempdb..#tempdates')...
April 12, 2013 at 3:53 am
Rao.V (4/10/2012)
I am using idea of script you mentioned to verify the backup status of backup files location in different location. Same like RESTORE VERIFYONLY.
The 'C:\Temp\Paths.txt' is having backup...
April 8, 2013 at 6:47 am
Eric M Russell (5/7/2012)
One suggested addition would be a 'schemaname' column. When I'm unit testing in Development, I often times have a different version of...
November 22, 2012 at 9:55 am
gsc_dba (10/26/2012)
= "SELECT * FROM " & JOIN(Parameters!DatabasesOnServer.Value) & ".sys.tables
Actually, you need a while loop which takes the parameter selection(s)...
October 26, 2012 at 7:19 am
I think you can use the JOIN function in this situation
= "SELECT * FROM " & JOIN(Parameters!DatabasesOnServer.Value) & ".sys.tables
Actually, you need a while loop which takes the parameter selection(s) and...
October 26, 2012 at 7:02 am
Nice script 🙂
Just a heads up - found a missing QUOTENAME here: (around @DBName)
(only applies if you have underscores and/or hyphens and/or dashes in your database names) 😉
--Get rid of...
October 4, 2012 at 5:13 am
Welsh Corgi (6/22/2012)
The following script includes the schema Name.What are some of the pros and cons of using the DMV's as opposed to the Database Tuning Advisor?
http://dba.stackexchange.com/questions/4430/using-dta-vs-evaluating-dmvs
June 25, 2012 at 4:42 am
lcarrethers (6/20/2012)
It doesnt like the <= iif(DateDiff("d",fields!STRTDATE.Value,today()) < 60, DateDiff("d",fields!STRTDATE.Value, today()), "Date not less than 60")
Instead of using 60 (integer) try using DateAdd(DateInterval.Day,-60,Now())
I also got an error because the int...
June 20, 2012 at 9:31 am
The part you missed is the false part of when the date diff is not <60
= iif(DateDiff("d",fields!STRTDATE.Value,today()) < 60, DateDiff("d",fields!STRTDATE.Value, today()), "Date not less than 60")
June 20, 2012 at 8:05 am
http://msdn.microsoft.com/en-us/library/dd239381%28v=sql.105%29.aspx
Shared data sources are useful when you have data sources that you use often. It is recommended that you use shared data sources as much as possible. They...
June 13, 2012 at 5:39 am
buddy__a (6/12/2012)
June 13, 2012 at 5:34 am
SQL Tab Magic from Red Gate remembers the connection and database name...:-D
June 13, 2012 at 2:49 am
Viewing 15 posts - 31 through 45 (of 183 total)