Viewing 15 posts - 1,336 through 1,350 (of 13,445 total)
Additionally I would also look at the scheduled jobs on the server itself; there's a good chance that Extract-Transform-Load(ETL) jobs that populate your databases exists on the same server...
November 25, 2015 at 11:45 am
SSRS would not need any changes; it's not printer aware
Duplex printing is an end user/client setting,the specific target printer, and whether it supports double sided printing. whether to print...
November 25, 2015 at 9:16 am
sp_send_dbmail returns an int output parameter, which you can capture, but you have to do so explicitly.
[highlight="#ffff11"]declare @TheMailID int[/highlight]
...
November 25, 2015 at 7:03 am
In my experience, the network low on my list of things to review for slow running queries.
returning trivial information, like SELECT @@VERSION should come back instantly. that would quickly show...
November 23, 2015 at 12:14 pm
Perry Whittle has posted a nice script multiple times, for example in this link:
http://www.sqlservercentral.com/Forums/Topic1560182-1550-1.aspx
i've grabbed his version and made it my own with minor tweaks, it's very comprehensive.
November 23, 2015 at 12:00 pm
Bryan.avergonzado (11/23/2015)
Error: 5123, Severity: 16, State: 1.
2015-11-23...
November 23, 2015 at 7:11 am
it depends on the details, but regardless, you have to generate the list of commands from some place; the msdb backup history from production, or the folder full of files,...
November 23, 2015 at 6:43 am
because this looks a bit like homework, let me throw out suggestions and not the solution.
the key here is that you need to test consecutive values. to do that, you...
November 23, 2015 at 6:28 am
GilaMonster (11/23/2015)
November 23, 2015 at 6:13 am
ok, if it's dynamic, it a pain, but doable. so much of it depends on the page that is presented with the listof files, because you have to extract them...
November 23, 2015 at 6:09 am
If you know the file name(s),there's quite a few articles on how to do this either via the SSIS component or a script task; i saw a lot in the...
November 23, 2015 at 5:31 am
Could you be raising an error but left off the rollback tran command?
November 20, 2015 at 2:16 pm
the core error is that xml is case sensitive, but you capitalized some of the values.
SELECT
@edate=GETDATE(),
...
November 20, 2015 at 1:18 pm
reformatted for readability, still looking at the code....
offhand, because of the OR statements turnign this into a catch all query, i think this should be multiple queries that insert into...
November 20, 2015 at 10:20 am
caojunhe24 (11/20/2015)
November 20, 2015 at 7:25 am
Viewing 15 posts - 1,336 through 1,350 (of 13,445 total)