Viewing 15 posts - 151 through 165 (of 1,080 total)
consider changing is_deceased NVARCHAR(2) NOT NULL to bit, and use a 1 and 0 instead.
where do you mention deceased date?
what's the purpose of "row is current", row start...
March 7, 2017 at 2:39 pm
what exactly did you backup and restore?
March 4, 2017 at 4:06 pm
Always ask yourself, how many people do I need to transport how far, with how much fuel, in a 1 cylinder vehicle.
If your expectations are realistic, as well as...
March 3, 2017 at 8:12 am
March 3, 2017 at 6:54 am
Set it up using the name of the actual instance, and afterwards redirect the publisher to the AG Listener Name.
This should guide you: https://msdn.microsoft.com/en-us/library/hh710046.aspx
March 2, 2017 at 1:53 pm
You've checked everything, except network traffic and response.
I generally see the same issue when connecting from continent to another, then there's a delay in object explorer visual response.
March 2, 2017 at 10:22 am
SSMS version on your workstation is pre-2012 is my guess.
March 1, 2017 at 12:54 pm
Do you get the same response when trying to connect from a different server/workstations SSMS?
February 28, 2017 at 1:31 pm
February 28, 2017 at 12:01 pm
check the content of C:\Program Files\Microsoft SQL Server\130\DTS\Binn\MsDtsSrvr.ini.xml and confirm server name is correct:
<?xml version="1.0" encoding="utf-8"?>
<DtsServiceConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<StopExecutingPackagesOnShutdown>true</StopExecutingPackagesOnShutdown>
<TopLevelFolders>
<Folder xsi:type="SqlServerFolder">
<Name>MSDB</Name>
February 28, 2017 at 10:26 am
You'll save yourself and future-you a lot of headache by developing an analysis cube and reporting from it rather.
It should be faster, sleeker and less admin-overhead than dividing into...
February 28, 2017 at 10:20 am
SELECT DATEADD(month, DATEDIFF(month, 0, getdate()), 0) AS StartOfMonth
Is this what you require?
February 28, 2017 at 7:54 am
Your Loop will perform the required read/operation then delete the folder, you'll need to encapsulate foreach file into a foreach folder.
http://microsoft-ssis.blogspot.com/2011/01/foreach-folder-enumerator.html
Perfecting your variables will be crucial.
February 28, 2017 at 7:53 am
quite difficult since we don't know what you have developed so far, but here is a good starting point on For loops when working with files.
https://www.simple-talk.com/sql/ssis/ssis-basics-introducing-the-foreach-loop-container/
Are...
February 28, 2017 at 7:42 am
Are you using SSIS tasks or batch scripts?
February 28, 2017 at 7:35 am
Viewing 15 posts - 151 through 165 (of 1,080 total)