Viewing 15 posts - 736 through 750 (of 13,445 total)
since you have CMS set up, I would use a powershell script to poll each CMS server, and insert data into a centralized table.
then you could generate an SSRS report...
December 16, 2016 at 1:57 pm
the example here:
http://ss64.com/nt/syntax-delolder.html
is so close to your version, i'm not sure there's an issue:
the only thing i see is that the example uses slashes instead of hypens for the...
December 16, 2016 at 1:35 pm
mcfarlandparkway (12/16/2016)
I want to exclude one column from select list how to do this?Column is empname(need to exclude from selct *)
my example contained the word [ColumnList] as a placeholder for...
December 16, 2016 at 12:28 pm
Phil Parkin (12/16/2016)
using System.IO;
into your Using block (towards the top of your code module)
it allows you to...
December 16, 2016 at 11:34 am
mcfarlandparkway (12/16/2016)
All the column data should be same in all 7 databases. - basically select *..from tabledo we need to use intersect?
you said find duplicates in the first post.
INTERSECT finds...
December 16, 2016 at 11:20 am
i always put my audit table in the master database, since it is guaranteed to exist, and all logins inherit some access to it.
someone already mentioned the three part insert:...
December 16, 2016 at 11:08 am
it depends on what you define as a duplicate; a few columns, or every column, including identities and CreatedDates?
also, is a duplicate in two databases, or must be in ALL...
December 16, 2016 at 11:04 am
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...
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...
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...
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...
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...
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...
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...
December 15, 2016 at 8:27 am
dndaughtery (12/13/2016)
December 13, 2016 at 11:56 am
Viewing 15 posts - 736 through 750 (of 13,445 total)