Viewing 15 posts - 1,846 through 1,860 (of 13,463 total)
sandeep1553 (4/2/2015)
Hi Grasshopper,Did you get the answer for this question. Because I am facing the same problem .If got the answer, please let me know
Thank you
sandy
look in your code...
April 2, 2015 at 7:59 am
since you can only have ONE clustered index on a table, your idea will fail for any table with more than one index.
performance will not automagically improve due to a...
April 2, 2015 at 6:57 am
pretty sure you can't truncate a table if it's referenced by indexed views or foreign keys, or views or functions that were created WITH SCHEMABINDING either.
April 1, 2015 at 2:57 pm
so you want to know if your SQL server is contained in a HyperV environment? is that the question?
i know @@version contains a string when it's in a VM:...
April 1, 2015 at 2:44 pm
the cost of a developer edition license is in the range of fifty or so dollars on Amazon, and well worth the investment.
that will get you over your limitations imposed...
April 1, 2015 at 6:04 am
are you restoring a 2014 database on a 2012 instance? that's the error i'd expect.
March 31, 2015 at 9:42 am
Rick Astley.
every time i see a Celko post, i get a bit PO'd like I've been rick rolled.
March 30, 2015 at 1:15 pm
OK for the folks who have bothered to follow this thread, a minor update, with a bunch of changes that i added myself,as well as some that were also contributed...
March 30, 2015 at 1:03 pm
not an expert on powershell, but i certainly use it a bit.
i'd be thinking the issue is scope;
it looks to me like none of your functions accept parameters.(AcceptedFeatures,Process,ShowinOutGrid).
what specific variables...
March 30, 2015 at 9:02 am
i've used this project quite a few times:
https://ssrscatalogqueries.codeplex.com/
i had to enhance it quite a bit, and it's still not where i want it.
it downloads all the files into sub folders,...
March 30, 2015 at 8:48 am
Google, test, repeat until you find one you like, or adapt one that fits your specific needs.
March 28, 2015 at 1:25 pm
ExecuteScalar will return a single value....that's what you want.
untested, but this is roughly what you want:
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
myconnection.Open()
'define the command
Dim cmd As New...
March 27, 2015 at 1:58 pm
my fast proof of concept: drop and recreate is definitely slower
in a measly 1000 iterations,these were my stats:
2113 milliseconds for Drop and Recreate
543 milliseconds for Truncate Existing Table
and my test...
March 26, 2015 at 3:06 pm
this seems to get me most of the data sources in the current catalogs as a direct query:
WITH MyCTE
AS
(
select convert(varchar(max),CONVERT(varbinary(max),Content))As StrContent,*
from reportserver.dbo.Catalog
)
SELECT SUBSTRING(StrContent,p1.i,p2.i - p1.i),* FROM MyCTE
CROSS APPLY(SELECT...
March 26, 2015 at 6:31 am
reports change very rarely...can you simply restore the ReportServer database to the day before you stepped on the data source?
if not, can you restore the database as a different name,...
March 26, 2015 at 6:23 am
Viewing 15 posts - 1,846 through 1,860 (of 13,463 total)