Viewing 15 posts - 211 through 225 (of 700 total)
Are you logging in with a SQL Server login or are you using Windows Authentication? If you are using a SQL Server login (which would throw the error you're seeing...
April 20, 2017 at 9:14 pm
sqlrob - Sunday, March 19, 2017 10:37 PMSample Blocking capture..
Thanks for that image, the details raise...
March 20, 2017 at 1:03 am
March 19, 2017 at 7:46 pm
USE...March 19, 2017 at 7:19 pm
I changed the max...
March 9, 2017 at 10:01 pm
You've basically hand-coded a DENSE_RANK() ... WHERE MAX(<DENSE_RANK() value>) = 2. The sample data will help roll a query to test, but you'll likely find a similar query plan with...
March 2, 2017 at 8:28 pm
Just treat the href value as an attribute of the <a/> element, instead of turning the entire element into a string:DECLARE
@URL varchar(100),
@GetData nvarchar(MAX)
SET @URL...
March 1, 2017 at 7:15 pm
We have a table that stores ~3 billion rows with...
February 27, 2017 at 7:26 pm
update AGENTSTATUS set LASTRUNGMT = @P0 , MAIL = 0, VERSION_BUILD =...February 24, 2017 at 6:06 pm
Because each index in each object may be on a separate filegroup or partition scheme, drive your query off of sys.indexes, and join the data_space_id column to sys.filegroups.data_space_id.
Here's one...
February 14, 2017 at 9:49 pm
Indianrock - Tuesday, February 14, 2017 9:30 AMALTER TABLE [dbo].[ACCOUNT_OWNERSHIP_DOC_SUMMARY] ADD CONSTRAINT [ACCOUNT_OWNERSHIP_DOC_SUMMARY_UC1] UNIQUE NONCLUSTERED
(
[CLIENT_ID] ASC,
[ACCOUNT_ID] ASC,
[OWNERSHIP_DOC_ID] ASC
)
If the index...
February 14, 2017 at 8:33 pm
-- This line of code works: February 14, 2017 at 7:35 pm
So, you want numeric values greater than (-100) and less than 100:CREATE TABLE #testr (id int not null primary key, OrigVarchar varchar(7) NOT NULL);
GO
INSERT...
February 6, 2017 at 9:56 pm
You give yourself far more flexibility by creating a single Windows Failover Cluster out of all four servers, and installing both FCIs on each of them. Are there any security...
February 5, 2017 at 3:03 pm
January 27, 2017 at 2:44 am
Viewing 15 posts - 211 through 225 (of 700 total)