Viewing 15 posts - 16 through 30 (of 607 total)
Is your client machine on the domain? If not you can launch SSMS from command prompt with your domain credentials.runas /netonly /user:YourDomain\UserName "C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\Ssms.exe"
February 1, 2018 at 1:07 am
Confirm the server is configured for SQL Server Authentication. You will not be able to login with a username and password unless this is enabled.
January 31, 2018 at 4:23 am
This simplified example may explain the issue:DECLARE @a VARCHAR(8000) = REPLICATE('A', 8000);
DECLARE @b-2 VARCHAR(8000) = REPLICATE('B', 8000);
DECLARE @C VARCHAR(MAX)...
January 30, 2018 at 10:47 pm
I can sum it up in one word. Passion.
“Passion is the path to the light side. Passion leads to hunger. Hunger leads to knowledge. Knowledge leads to wisdom."
January 30, 2018 at 1:18 am
Perhaps this bug:
https://connect.microsoft.com/SQLServer/feedback/details/383878/extended-event-session-hangs
January 30, 2018 at 12:30 am
You can simply use the ROW_NUMBER function in your CTE, like this:
Declare @diary TABLE ([Diary Reference] int, [Tenant Code] varchar(7), [Category] varchar(4), [Action Date] date,...
January 29, 2018 at 11:38 pm
Join to a subquery to find the row you need. You can also use a CTE with the ROW_NUMBER function.
Select a.Vin,aEntry_Date as Entry_Date1,a.Status
from VS_Transaction a
January 29, 2018 at 11:32 pm
January 29, 2018 at 1:33 am
This was resolved 3 years ago.
April 12, 2016 at 3:17 am
insert @keywords select 'col1','''Robert''; DROP TABLE Students; --'
January 18, 2016 at 11:46 pm
Lee Linares (11/24/2015)
I created the test table but when I ran your version of Doran script the ONLY data returned was for the queue_messages_xxxxxxxx internal tables with 'Unique Index' shown...
November 24, 2015 at 7:32 am
Actually, in testing I discovered it does not report the correct data. This will find tables that have a unique index with multiple columns as well as another index with...
November 24, 2015 at 4:19 am
This is a handy script, however you are only looking at clustered primary keys. I modified the script to remove the filter based on index_id as you can also get...
November 24, 2015 at 3:28 am
cyagasa (10/9/2015)
select
,left([IDNumber],2) as year
,SUBSTRING(Idnumber,3,2) as Month
,SUBSTRING (Idnumber,5,2) as day
,SUBSTRING(Idnumber ,7,4) as gender
,substring (idnumber ,10,3) nationality
from...
October 9, 2015 at 5:09 am
Sean Lange (3/5/2015)
DBCC TIMEWARP is active again I see. We have a question from the future about a deprecated feature. :w00t:
I'm sure I just saw a DeLorean.
March 5, 2015 at 11:35 pm
Viewing 15 posts - 16 through 30 (of 607 total)