Viewing 15 posts - 511 through 525 (of 7,168 total)
this part if the error is suspicious:
requires a higher level edition
Verify you are running a Package in 2005 format.
January 14, 2016 at 1:53 pm
Bill Talada (1/14/2016)
January 14, 2016 at 9:09 am
Bill Talada (1/14/2016)
DECLARE @days TABLE (dt date not null primary key);
DECLARE @dt date;
SET @dt = '20160101';
WHILE @dt < '20170101'
BEGIN
INSERT into @days VALUES (@dt);
SET @dt = DATEADD(DAY,1,@dt);
END
SELECT DATEPART(MONTH,dt) MonthNbr, DATEPART(week,dt) WeekNbr,...
January 14, 2016 at 8:54 am
Jeff Moden (1/14/2016)
Orlando Colamatteo (1/13/2016)
January 14, 2016 at 8:37 am
noober (5/24/2013)
January 14, 2016 at 8:33 am
cycle90210 (1/14/2016)
January 14, 2016 at 8:06 am
Slay it. I was completely bummed when I learned how bad it was because functionally FORMAT is a breath of fresh air compared to other methods. Too bad it's essentially...
January 14, 2016 at 7:51 am
A third option is to drop and recreate the table.
January 14, 2016 at 1:27 am
johnwalker10 (1/13/2016)
SELECT CONVERT(nvarchar(6), GETDATE(), 112)
That returns 201601 for days in January. The OP wants 2016/1 for January and 2016/10 for October. There is no style offered by CONVERT for that...
January 13, 2016 at 10:36 pm
johnwalker10 (1/13/2016)
to stop some users from deleting records from a table
DENY DELETE ON OBJECT::dbo.table_to_deny TO restricted_user;
Some users, yes, but still not someone in the db_owner Role as they could...
January 13, 2016 at 10:34 pm
How do you need to handle the schema changes? Assuming these changes are a fact of life, what do the people adding these fields expect from the DW solution? Dynamic...
January 13, 2016 at 7:26 pm
January 13, 2016 at 7:20 pm
You could use a Script Task and use the WebClient class. Should not be too much code.
January 13, 2016 at 7:16 pm
sushantkatte (1/13/2016)
January 13, 2016 at 7:14 pm
Viewing 15 posts - 511 through 525 (of 7,168 total)