Viewing 15 posts - 2,326 through 2,340 (of 2,603 total)
you can get the developer edition here - for non production use.
https://www.microsoft.com/en-ie/sql-server/sql-server-downloads
once you tested whatever you need you will have to decide if you need enterprise...
May 31, 2018 at 2:50 pm
Maybe failing on the snapshot bit which uses different ports
Replication connections to SQL Server use the typical regular Database Engine ports (TCP port 1433 for the...
May 31, 2018 at 6:33 am
getting ride of them quite fast - just open one of them, report it 3 times (the same one) and puff all from that user are gone in the wind
May 31, 2018 at 4:00 am
Can you supply the DDL for the original tables, not the ones you have altered to add the newid column
May 31, 2018 at 3:58 am
May 30, 2018 at 6:23 pm
If your worry is just the index fragmentation you probably can avoid it if you change your application to generate a sequential guid instead of a "normal" guid.
May 30, 2018 at 7:31 am
The Oracle Attunity drivers are specific to Enterprise and are faster than the standard oledb/odbc drives supplied with the Oracle client.
Whether it justifies the extra cost is hard to...
May 30, 2018 at 7:26 am
OP seems to be gone.
I didn't post any idea or sugestion as I believe that what the OP is trying to achive is to execute the sql and...
May 30, 2018 at 5:29 am
I don't get the "4" . As far as I get it it should be 3
first date
first 3 are true - this is a consecutive 3
next one...
May 28, 2018 at 6:48 am
you need to escape the single quotes for that field - so 'test' becomes ''test''
May 28, 2018 at 5:37 am
A percentage is just a decimal type with X integers and Y decimals.
Most cases will store percentages as decimal (9, 4) but this is always going to depend on...
May 27, 2018 at 11:20 pm
I assumed you had the database already on 2017 instance.
you will need to create it first - I do not think you will be able to create it...
May 27, 2018 at 6:25 am
As far as I can see from the dump the issue was on wow64cpu.dll so going to be hard to identify the exact issue.
You may wish to play...
May 27, 2018 at 5:15 am
Most likely some values are null.
try and create a new table without any of the constraints e.g. set all to null and do not have any of the...
May 26, 2018 at 11:59 pm
can be further simplified; with mycte as
(SELECT a.MemberID
, STUFF(
(SELECT ',' + p.ProgramName
From MemberProgram...
May 26, 2018 at 1:07 pm
Viewing 15 posts - 2,326 through 2,340 (of 2,603 total)