Viewing 15 posts - 1 through 15 (of 186 total)
It looks like something has broken the LSN for that database . That could be a switch from Full recovery to Simple and back, a restore, or another backup run...
April 23, 2019 at 12:22 pm
CREATE TABLE [Job info$]
(
[Time Reported] DATETIME
)
INSERT [Job info$] ([Time reported])
VALUES
( '1899-12-30 09:12:32.000' ) ,
( '1899-12-30 09:13:32.000' ) ,
( '1899-12-30 12:21:32.000' ) ,
( '1899-12-30 19:24:32.000' ) ;
SELECT FORMAT([Time Reported], N'HH\:mm')
FROM [Job...
April 18, 2019 at 3:00 pm
SELECT FORMAT(DateTimeCol, N'HH\:mm')
FROM #TimeReported;
April 18, 2019 at 1:37 pm
Is the user using SSMS Express? If so the Agent won't be visible and you'll need to install the full version of SSMS instead.
October 16, 2014 at 2:24 am
Changing the database collation won't change the collation of columns in existing user defined tables.
Here's a link that explains: http://msdn.microsoft.com/en-GB/library/ms175835.aspx
October 2, 2014 at 4:17 am
This?
SELECT e1.Place
, e1.Objective
, e1.[Year]
, e1.[Month]
, e1.Exam1
, e2.Exam2
, e3.Exam3
FROM #tmpExam1 e1
JOIN #tmpExam2 e2
ON e1.Objective = e2.Objective
...
August 12, 2014 at 3:49 am
Then presumably the other database is case insensitive.
July 8, 2014 at 1:46 am
You must be using a case sensitive collation on either the server or the database:
July 8, 2014 at 1:33 am
Are you restoring from the GUI?http://sqlblog.com/blogs/merrill_aldrich/archive/2013/03/15/ssms-2012-restore-gui-gotcha.aspx
March 6, 2014 at 4:58 am
Also check the local administrators group on the server running SQL Server. Any user who is added to the local admin group, will be (by default) an admin on your...
February 10, 2014 at 7:18 am
-- xp_cmdshell is an advanced option,
-- so first you need to check if it's turned on:
EXEC sp_configure;
GO
-- If you don't see xp_cmdshell in the list:
EXEC sp_configure 'show advanced...
January 24, 2013 at 1:38 am
The last couple of posts in this thread http://social.technet.microsoft.com/Forums/da-DK/sqldatawarehousing/thread/3fb03851-2de8-4bfe-9df8-2e7dfbbc60cc suggest how to retain historical changes after a schema change.
July 19, 2012 at 7:33 am
In SQL Server 2008 members of the local Windows administrator group don't automatically have admin access to SQL Server. You'll need to start SQL in single user mode and...
July 18, 2012 at 12:50 am
Not quite what you're after, but right click over the toolbar in SSMS and select Customize. On the Commands tab select File. There is an option Open File...
June 13, 2012 at 3:04 am
By the way, the houses near the tech center sure are expensive - about $250,000 and up I think?
Wow, that's cheap by UK standards. Average house price...
June 1, 2012 at 3:02 am
Viewing 15 posts - 1 through 15 (of 186 total)