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...
November 10, 2015 at 2:13 pm
jarid.lawson (11/10/2015)
November 10, 2015 at 1:03 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.
November 10, 2015 at 8:23 am
Did you read the message at the top of the home page?
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...
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!"
😀
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...
October 22, 2015 at 12:47 pm
For changing ownership, take a look at:
October 21, 2015 at 2:29 pm
Lynn Pettis (10/21/2015)
select
ColumnA,
count(*)
from
dbo.MyTable
group by
ColumnA
having
count(*) >...
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...
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...
October 21, 2015 at 7:41 am
Blame Windows.
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...
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...
October 20, 2015 at 12:05 pm
Viewing 15 posts - 211 through 225 (of 3,666 total)