Viewing 11 posts - 2,746 through 2,756 (of 2,756 total)
That is a good question. Where I work we have 23 live SQL Instances, 51 test/development instances that are not always up (due to disk space constraints mostly) and...
October 7, 2016 at 8:33 am
Jeff Moden (10/5/2016)
bmg002 (9/27/2016)
Sean Lange (9/27/2016)
bmg002 (9/27/2016)
if you are using 3 values in the object declaration, you are declaring the database, the schema and the object.
so...
October 6, 2016 at 8:43 am
I recently took this test and pass first try.
The training I went with was uCertify.com. The price was decent and the content was exactly how I learn. They...
September 30, 2016 at 8:24 am
I could be wrong, but I think you are missing a few ;
I think the command should be:
sqlcmd -S %_var1% -d %_var2% -Q "DECLARE @status varchar(100); exec dbo.sp_RunSQLAgentJob...
September 27, 2016 at 1:48 pm
Sean Lange (9/27/2016)
bmg002 (9/27/2016)
if you are using 3 values in the object declaration, you are declaring the database, the schema and the object.
so in your case:
JIREM10.dbo.JIRABConcentration
JIREM10...
September 27, 2016 at 1:45 pm
you are already doing that.
if you are using 3 values in the object declaration, you are declaring the database, the schema and the object.
so in your case:
JIREM10.dbo.JIRABConcentration
JIREM10 is the database
dbo...
September 27, 2016 at 1:12 pm
Posisbly a dumb question, but are you enabling the broker? I don't see that in your scripts.
The other thing I'd recommend is to try sending a message outside of...
September 19, 2016 at 10:32 am
As a thought - are your database and SSRS instance on the same SQL Instance? If not, did you update both SSRS instance and your database instance?
it sounds to...
September 13, 2016 at 4:31 pm
Another thought (that we hit in our shop) is if "Option (Recompile)" improves performance, your statistics may be out of date.
How frequently do you re-create statistics or just let it...
September 12, 2016 at 2:36 pm
Right. My bad.
My version of it would have given you wrong results as it would have started at 0 whenever the date changed.
Good job figuring...
September 12, 2016 at 10:00 am
Have you tried using partition by in your second one instead of order by? That is:
SUM(Quantity) OVER (PARTITION BY EffectiveDate ORDER BY Holder RANGE UNBOUNDED PRECEDING) AS TQuantity
you may...
September 12, 2016 at 9:47 am
Viewing 11 posts - 2,746 through 2,756 (of 2,756 total)