Viewing 15 posts - 2,251 through 2,265 (of 8,760 total)
I have an issue where an insert of a record in a table...
April 20, 2017 at 5:34 am
April 19, 2017 at 10:17 am
April 19, 2017 at 10:12 am
April 19, 2017 at 2:27 am
is this really the best way to extract the file name from a file...
April 13, 2017 at 8:38 am
April 12, 2017 at 11:39 am
Eric M Russell - Wednesday, April 12, 2017 11:30 AMMicrosoft should simply add a system tally table to SQL Server.
And of course...
April 12, 2017 at 11:36 am
Is the SQL Server Browser Service running?
😎
April 12, 2017 at 10:06 am
And what does this code return?
😎USE master;
GO
SET NOCOUNT ON;
EXEC sp_configure 'remote access';
April 12, 2017 at 9:38 am
Check the server configuration for remote access and that the TCP protocol is enabled in the sql server configuration manager
😎
April 12, 2017 at 9:27 am
This does the same as Luis's fine code, slightly more efficiently though. Hesitant in posting such a solution as the requirements are somewhat unclear.
😎
USE...
April 10, 2017 at 8:25 am
Quick suggestion
😎
USE TEEST;
GO
declare @T1 table (
PartyId int,
Name varchar(50))
declare @T2 table (
ContactMechanismID int)
declare @T3 table (
April 10, 2017 at 1:06 am
Has anyone looked into the security of the BPE? If so, please share on this thread
https://www.sqlservercentral.com/Forums/FindPost1869011.aspx
😎
April 5, 2017 at 3:05 am
Viewing 15 posts - 2,251 through 2,265 (of 8,760 total)