Viewing 15 posts - 1,741 through 1,755 (of 2,694 total)
sysadmin is server (instance) level role as seen on
description of what each column for syslogins below
and as you will need it for sure https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql/server-and-database-roles-in-sql-server
February 2, 2020 at 2:03 pm
Ideally you would load the events onto a sql server table and do the analysis and initial filtering there - easier with high volumes.
sample example that I use to do...
February 2, 2020 at 1:43 pm
then don't commit the username/password - that could be on a "do not commit" file on your machine and get BIML to retrieve the username/password part from that file
February 1, 2020 at 7:06 pm
in dev it should not matter - in all other environments all connections should be either done through the SSIS Catalog as sensitive or stored on a secure configuration database,...
February 1, 2020 at 2:39 pm
duplicated post - reply in https://www.sqlservercentral.com/forums/topic/index-23
January 31, 2020 at 9:44 pm
if you have a single filegroup with data files then you can't really tell it - some pages may be on one file, other pages on another file. So although...
January 31, 2020 at 9:23 pm
what everyone else said - plus in some of the teams we have a database per change request being done.
one of our teams has almost always over...
January 31, 2020 at 7:41 pm
Yes, there will be some limited page splits. But the reads against the table will be vastly more efficient, even with the splits.
It's certainly possible that [TimeDayId] then [Material_Werksdaten_key]...
January 31, 2020 at 7:26 pm
You should cluster the table on:
( Material_Werksdaten_key, TimeDayId )
Your join is very confusing. You need to specify the TimeDayId(s) directly, not use a function on it.
Is TimeDayId one value...
January 31, 2020 at 6:31 pm
ah well. didn't notice SQL Saturday was this near me (I'm in Dublin) - would have gone there if nothing else to talk with some people from here.
January 31, 2020 at 11:37 am
what everyone else said - plus in some of the teams we have a database per change request being done.
one of our teams has almost always over 100 active databases...
January 31, 2020 at 11:27 am
Based on what you said I would change the table itself and have 2 new columns made up of the year and and month part of TimeDayId so the index...
January 31, 2020 at 7:50 am
thats SSIS for you - happens a lot unfortunately and I never managed to find a solution.
try with the 2016 runtime and see if it improves. https://www.microsoft.com/en-us/download/details.aspx?id=50040
if it still fails...
January 31, 2020 at 6:34 am
time for you do do a bit of data analysis and decide what you want to do with it.
look at the values from the sql below - some of these...
January 31, 2020 at 12:09 am
other aspect - assuming that you did install the correct driver on your SQL Server and that your cms is using the defaults then the syntax should be
select *
from cmslinkedservername.cms.root.hagent...
January 30, 2020 at 11:58 pm
Viewing 15 posts - 1,741 through 1,755 (of 2,694 total)