Viewing 15 posts - 766 through 780 (of 13,460 total)
I know the default is to search for a local windows user related to the server name;
You probably need to change toe location to to browse to find the...
Lowell
December 16, 2016 at 10:57 am
mandavli (12/16/2016)
with fail as I mean it's not able to find file, even if I have same proxy accounts...
Lowell
December 16, 2016 at 9:12 am
mandavli (12/16/2016)
But when I create a job on a different sql server. it fails, I...
Lowell
December 16, 2016 at 8:54 am
did you already configure a credential and proxy operator in SQL Agent?
Did you configure that step to use that proxy operator?

the account that runs the SSIS jobs \is often a...
Lowell
December 16, 2016 at 7:51 am
both examples were extremely helpful, folks, thank you!
I did it both ways as my proof of concept; I was already leaning towards Phil's example of a script task, but I've...
Lowell
December 16, 2016 at 7:11 am
the key is to generate all possible combinations first..
Basically, you have to select from Your Calendar/Dates table,and cross join all possible employees, and then finally left join it to attendance.
WHERE...
Lowell
December 15, 2016 at 10:27 am
what you are looking for is a Cartesian Product;
also known as a cross join
the syntax is pretty simple:
SELECT * FROM #Table1
CROSS JOIN #Table2
in the future, if you want the...
Lowell
December 15, 2016 at 8:27 am
dndaughtery (12/13/2016)
Lowell
December 13, 2016 at 11:56 am
I think it's a column descriptor in master.sys.procedures;
I've confirmed that my proc, which sets specific trace flags, shows up in my results:
sp_set_traceflags --this is mine!
sp_ssis_startup
sp_MSrepl_startup
SELECT *
FROM master.sys.procedures
WHERE [procedures].[is_auto_executed]...
Lowell
December 13, 2016 at 9:28 am
i believe it's suffering from the classic error: recovery mode is FULL recovery, someone took at least one full backup, and no one has ever run a log backup, nor...
Lowell
December 12, 2016 at 12:02 pm
pretty sure standard edition featureing multiple Basic Availability Group is supported, and if you have multiple databases, that kind of forces you into having to design one db per group.
...
Lowell
December 9, 2016 at 1:56 pm
I got my SQL2012/2014 MCSA in May 2016, which was probably a month before SQL2016 RTM came out.
The official books for the three new SQL 2016 MCSA come...
Lowell
December 8, 2016 at 11:19 am
row_number featuring partition by will do what you are asking;
here's an old example, but you can see you get all the other values but it's logically grouped by the...
Lowell
December 8, 2016 at 11:13 am
jbalbo (12/8/2016)
I am using a Bulk insert via a txt file and...
Lowell
December 8, 2016 at 11:05 am
yes, but you need a case statement to bulletproof the calculation for data shorter than your assumption.
CREATE TABLE EXAMPLE (
ExampleId int IDENTITY(1,1) NOT NULL PRIMARY KEY,
MyColumn varchar(30)
)
INSERT INTO EXAMPLE(MyColumn)
VALUES( ''),('1234567890')
ALTER...
Lowell
December 8, 2016 at 10:34 am
Viewing 15 posts - 766 through 780 (of 13,460 total)