Viewing 15 posts - 7,651 through 7,665 (of 13,882 total)
TJT (1/21/2016)
I need to find all foreign alphabet characters in a column. It might Russian, Chinese, ect.
What's your question?
As we do not know where you are from, we do...
January 21, 2016 at 8:42 am
Tim ffitch (1/21/2016)
Phil Parkin (1/21/2016)
Tim ffitch (1/21/2016)
January 21, 2016 at 8:40 am
Brandie Tarvin (1/21/2016)
Two years from now he or his successor are going to be very irritated about their design.
I love a good understatement.
I get very irritated when we run out...
January 21, 2016 at 6:25 am
Tim ffitch (1/21/2016)
January 21, 2016 at 6:18 am
Eirikur Eiriksson (1/20/2016)
Grant Fritchey (1/20/2016)
January 20, 2016 at 11:45 am
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
Viewing 15 posts - 7,651 through 7,665 (of 13,882 total)