Viewing 15 posts - 7,651 through 7,665 (of 13,876 total)
Orlando Colamatteo (1/19/2016)
what about when you press F2? same?
I tried this in Excel 2010 and, whether the date is a 'proper' date or just a date entered as text, it...
January 19, 2016 at 12:34 pm
alex.sqldba (1/19/2016)
I am on 2014 Enterprise.Thanks
Alex
Great. A connection in SSIS can be defined at either the package level (which you know about) or the project level.
All packages within an SSIS...
January 19, 2016 at 12:00 pm
You need to remove the GO after 'use MSDB'.
January 19, 2016 at 11:40 am
PSB (1/19/2016)
I am trying to run a SSIS package as a job which copies data from sql view into a csv file using Execute process Task to a location...
January 19, 2016 at 11:34 am
Something like this?
select name, CaseDate, ct = count(1)
from tbl
group by name, CaseDate
January 19, 2016 at 10:22 am
SQL!$@w$0ME (1/19/2016)
Thanks Phil. Please advise if the following permissions are good enough.data reader, data writer, Create role for View/Execute permissions on db level (dbo and all user defined schemas).
I cannot...
January 19, 2016 at 9:44 am
--Create the role
create role myApp authorization dbo;
go
--Create users in the db
--Add members to the role
alter role myApp
add member [domain\user];
--etc
--Grant permissions to the role
grant exec on schema::mySchema to myApp
--etc etc
January 19, 2016 at 9:12 am
qbrt (1/19/2016)
Phil Parkin (1/19/2016)
qbrt (1/19/2016)
Phil Parkin (1/18/2016)
January 19, 2016 at 7:54 am
alex.sqldba (1/19/2016)
I am just trying to get in line a great many SSIS packages that either might be used, might not be used, are duplicated in terms of purpose,...
January 19, 2016 at 7:50 am
qbrt (1/19/2016)
Phil Parkin (1/18/2016)
WHERE NOT EXISTS...
January 19, 2016 at 7:36 am
Merge can be idempotent. I would recommend doing the UPDATE part of the MERGE only if an update is required. I do this via the
WHERE NOT EXISTS (SELECT source INTERSECT...
January 18, 2016 at 3:46 pm
tusharchpatil (1/18/2016)
no i am not using simultaneouly its writing mistakei wanted to know why rownum not allowed = and > operator to get proper result.?
I cannot understand this.
Please post your...
January 18, 2016 at 2:29 pm
ffarouqi (1/18/2016)
January 18, 2016 at 1:51 pm
Viewing 15 posts - 7,651 through 7,665 (of 13,876 total)