Viewing 15 posts - 1,156 through 1,170 (of 6,678 total)
You can get the actual error message from the maintenance plan - trying to get the error from the agent job is useless. In Object Explorer - open the Maintenance...
April 21, 2021 at 6:41 pm
Before going down this road - what problem are you trying to resolve by enabling read-routing? If you are having issues with select statements blocking writes there may be other...
April 21, 2021 at 6:33 pm
You will need a separate script for EDIFACT files - but using the idea's from the original script. In the original script we are parsing the first and second row...
April 17, 2021 at 3:04 pm
No issues - for AG you have to install SQL Server to that host and not to the cluster, so it doesn't matter the order you install the clustering services. ...
April 15, 2021 at 6:13 pm
It appears that one or more databases in the AG are not synchronizing - you need to fix that before you can do anything else.
As for the application, did you...
April 14, 2021 at 6:26 pm
The cname will only resolve to an IP address - the port definition for the named instance won't be included. If you have named instances you can use the cname...
April 14, 2021 at 6:18 pm
I ran into another file format for the EDIFACT in files... They all appear to be ASCII files
sample: UNB+UNOA:1+UCH:ZZ+XXX:ZZ+YYYYYY:2200+12194++ZZZZZZ'UNH
XXX - is Sender YYYYYY - Date ZZZZZZ - RecordType
First record...
April 13, 2021 at 7:10 pm
Cool.
That Insert's as it reads the files correct? Thanks.
I provided both - either load directly to SQL Server file by file, or create a CSV file and then load...
April 13, 2021 at 7:07 pm
A couple of things - not tuning advice, but could help identify possibilities:
April 13, 2021 at 6:55 pm
This might get you started:
# Encoding check arrays
[byte[]]$utf7 = 43,45;
[byte[]]$unicode = 255,254;
[byte[]]$utf8 = 239,187,191;
# Get list of files
$fileList = Get-ChildItem -Path C:\Temp | Where-Object {$_ -like "*temp_edi_*.txt"};
$fileList...
April 12, 2021 at 7:55 pm
I cannot answer that question - you already seem to have what is needed in SQL, already broken out by field/column. It seems you have a process using an EDI...
April 11, 2021 at 3:40 pm
In Visual Studio - create a new Integration Services Project using the template 'Integration Services Import Project Wizard'. This will prompt you for the Integration Services Catalog and allow you...
April 10, 2021 at 2:59 pm
That's correct. You don't even need to include Operations.OpOrder in the SELECT results and you can still ORDER BY it.
Except when you use DISTINCT or GROUP BY - and...
April 10, 2021 at 2:48 pm
You have to be able to schedule 'something' - so you need a tool that schedules and runs jobs. Since SQL Server Express does not have the agent then you...
April 8, 2021 at 3:36 pm
Simple - by default when SQL Server is installed (all Editions) only those members added during the install are granted sysadmin rights to the SQL instance. Unless someone with permissions...
April 8, 2021 at 3:32 pm
Viewing 15 posts - 1,156 through 1,170 (of 6,678 total)