Viewing 9 posts - 1 through 9 (of 9 total)
You can also (since recent SSMS) set the limit of the number of characters returned in the grid for non-XML data (varchar(max) for exemple)
October 4, 2024 at 8:40 am
The following article is interesting : using sql server (azure sql to be precise) as a store for vectors/embeddings built with openAI and use cosine distance to compute one kind...
June 8, 2023 at 3:24 pm
Sure you're perfectly right :
CREATE OR ALTER PROCEDURE [usp_generate_view_script]
(
@SourceSchema VARCHAR(100),
@TargetSchema VARCHAR(100)
)
-- Usage EXEC [usp_generate_view_script] @SourceSchema='dbo', @TargetSchema='views';
AS
BEGIN
...
November 19, 2020 at 6:14 pm
We got the answer : it was du to the to_lower function.
Change to To_string and no collisions
using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
using System.Text;
namespace DBCLRFNV1A
{
...
September 17, 2020 at 9:05 pm
November 8, 2018 at 1:56 pm
Jefferson Elias (2/2/2016)
February 14, 2018 at 7:39 am
This query include schema :
--sqlserver 2005 +
EXECUTE master.sys.sp_MSforeachdb
'USE [?];
select getdate() as snapdate,serverproperty(''MachineName'') svr,@@servicename sv, ''?'' _dbname,SchemaName=SCHEMA_NAME(uid), TableName= object_name(p.object_id),p.partition_id,p.partition_number,
lignes = sum(
...
September 28, 2016 at 2:59 am
Viewing 9 posts - 1 through 9 (of 9 total)