Viewing 15 posts - 121 through 135 (of 13,429 total)
on each server, can you check this Server Setting?
Perform Volume Main task for fast database creation.
if you changed the service account after the initial install, i might expect to see...
September 16, 2019 at 12:45 pm
here's a snippet i use:
this will return all failures since the given date(first of the year is my parameter)
you can tweak it from there, i think.
DECLARE @dt...
September 13, 2019 at 5:26 pm
the SQL Import Wizard will let you select all 260 tables in one go, and save the package for future editing, execution and modification.
one package, 260 data flows.
September 10, 2019 at 11:32 am
does the application NEVER write to the database and needs to be fixed, or does the applicaiton writing to the database works for a while, and the stops writing?
there are...
September 9, 2019 at 9:16 pm
the code I posted has problems?
yes the code has problems, since . the code you pasted is incomplete.
for what you pasted, besides having a lot of whitespace so the...
September 5, 2019 at 2:58 pm
if you are sure they are using the same sources, then how about a quick and dirty row count and totals by columns?
add some additional group bys to look at...
September 5, 2019 at 1:36 am
i might consider checking the ansi and date_format sessions settings for default dates, as they could be different on the server, running as an agent , vs running in SSMS
ie...
August 27, 2019 at 8:55 pm
without using .NET, then no, the specific file extension *.msg ends up requiring C# to do something like this, since the msg is a binary file:
you could save as text...
August 26, 2019 at 12:04 am
qadding the columns them selves is just a DDL operation. you would not need to do that inside SSIS.
ALTER TABLE ADD Column1 varchar(etc...
i suspect you mean what about the data...
August 25, 2019 at 11:44 pm
BIDS is the older version for SSIS development from SQL2005 to SQL2008R2
in 2012 and Above, BIDS had a name change to SSDT(SQL Server Data Tools). it is basically the same...
August 25, 2019 at 11:33 pm
i think this will fix just two items though; won't he have continued issues when he discovers %20 or other url encoded values?
i would think we need to consider all...
August 23, 2019 at 8:13 pm
that reminds me of one of those bad practice examples i wrote, to show how confusing keywords as object names could be.
IF NOT EXISTS(SELECT 1 FROM sys.databases...
August 23, 2019 at 3:38 pm
can you try EXECUTE AS LOGIN='domain\user' instead of execute as user, and execute from , say the master database as the context?
can you duplicate the user error then?
August 22, 2019 at 3:19 pm
it sounds like you might have removed public permissions from the server,and specifically in master? could that have happened?
if the end user is using something like SSMS, they typically get...
August 21, 2019 at 8:43 pm
i wrote/modified/collected some powershell scripts to disable various group policies or services that are related to CEIP and other unnecessary services.
I hope this helps.
###################################################################################################
##disable cortana
###################################################################################################
New-Item -Path...
August 20, 2019 at 4:13 pm
Viewing 15 posts - 121 through 135 (of 13,429 total)