Viewing 15 posts - 211 through 225 (of 3,666 total)
caojunhe24 (11/10/2015)
I'm trying to schedule a job using SQL JOB AGENT
The logic- the SSIS package should run on every
Monday :12pm-10pm..(should run every 30 mins)
Tuesday 8am-9pm..(should run every...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
November 10, 2015 at 2:13 pm
jarid.lawson (11/10/2015)
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
November 10, 2015 at 1:03 pm
I received notifications.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
November 10, 2015 at 12:38 pm
simon.whale (11/10/2015)
Yes, someone I work with still gets the daily news letters through our work email system, hence why I thought I'd try here.
You did the right thing.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
November 10, 2015 at 8:23 am
Did you read the message at the top of the home page?
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
November 10, 2015 at 8:15 am
Been there seen that, but don't know of any way to avoid the high memory usage.
FYI, limiting SQL Server to no more than X MB will not help in any...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 22, 2015 at 1:13 pm
Lowell (10/22/2015)
DDL, sample data and expected results then?
Lowell, you reminded me of one of the most honest sign I saw a homeless person holding.
It said: "NEED BEER!"
😀
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 22, 2015 at 1:00 pm
Reread ...
[p]
...The current user cannot decrypt secrets from the package. This scenario can occur if the current account or the execution account differs from the original package author, and...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 22, 2015 at 12:47 pm
For changing ownership, take a look at:
https://msdn.microsoft.com/en-us/library/ms173423.aspx
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 21, 2015 at 2:29 pm
Lynn Pettis (10/21/2015)
select
ColumnA,
count(*)
from
dbo.MyTable
group by
ColumnA
having
count(*) >...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 21, 2015 at 9:54 am
GilaMonster (10/21/2015)
Grant Fritchey (10/21/2015)
GilaMonster (10/21/2015)
Grant Fritchey (10/21/2015)
GilaMonster (10/20/2015)
I'll probably do my usual, look at the schedule over breakfast and decide then what I want to see.
There are sessions that we...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 21, 2015 at 8:05 am
Grant Fritchey (10/21/2015)
GilaMonster (10/21/2015)
Grant Fritchey (10/21/2015)
GilaMonster (10/20/2015)
I'll probably do my usual, look at the schedule over breakfast and decide then what I want to see.
There are sessions that we get...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 21, 2015 at 7:41 am
Blame Windows.
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 20, 2015 at 12:19 pm
Jeff Moden (10/20/2015)
Alvin Ramard (10/20/2015)
Lynn Pettis (10/20/2015)
Alvin Ramard (10/20/2015)
Or:
set @testTime = '23:45';
SELECT @testTime = cast(dateadd(minute, 15, cast(@testTime as time) ) as char(5));
SELECT @testTime;
Remember, the OP is working with SQL...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 20, 2015 at 12:08 pm
Jeff Moden (10/20/2015)
--===== Setup the test. This is NOT a part of the solution.
DECLARE @testTime CHAR(5);
SELECT @testTime = '23:45';
--===== Exploit the simplicity of implicit conversions...
For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]
October 20, 2015 at 12:05 pm
Viewing 15 posts - 211 through 225 (of 3,666 total)