I want to create a Wedge in SQL server without using any mapping tool like ArcMap, which will be visualized (only) in ArcGIS. Unfortunately, ST_Geometry is not supported in SQL Server and CircularString is not supported in ArcGIS.
I assumed to create a buffer around a point but my actual requirement is just a wedge (partial circle with start and end angles).
For Example, for parametric wedges in PostgreSQL/PostGIS
sde.st_geometry (x, y, z, m, startangle, endangle, outerradius, innerradius, number_of_points, srid)
Is there anybody who can guide me to create this through any logic?