Viewing 15 posts - 181 through 195 (of 541 total)
AndrewSQLDBA (6/26/2012)
I hope that you all are having a wonderful day.
This has been bothering me for sometime now, but I had to take the time today to try and...
June 27, 2012 at 12:29 pm
You need to backup http://msdn2.microsoft.com/en-us/library/ms174387.aspx
and then restore your master key http://msdn2.microsoft.com/en-us/library/ms186336.aspx
June 18, 2012 at 2:30 pm
Do you have any kind of replication setup?
May 31, 2012 at 12:33 pm
that's probably sharepoint service.
May 31, 2012 at 12:20 pm
Andre Ranieri (5/17/2012)
Followup question: What class of command is DBCC CHECKDB ? It doesn't seem to fall into the category of DML, DDL, DCL or TCL.Thoughts?
Andre
DBCC Class?
May 17, 2012 at 9:55 am
tim 37654 (5/15/2012)
Thanks for the replies.
The code that does the insert is standard Dreamweaver CS5 insert code, no SP involved:
If (CStr(UploadFormRequest("MM_insert")) = "form1") Then
If (Not MM_abortEdit) Then
...
May 15, 2012 at 12:29 pm
May 9, 2012 at 9:53 am
Did you try ALTER DATABASE yourdb SET PARTNER RESUME;
Also see statuses for principal
select * from sys.database_mirroring where mirroring_role =1
and mirrored db
select * from sys.database_mirroring where mirroring_role =2
April 30, 2012 at 3:10 pm
Got me thinking so i only choose 3 and 5 missed 2...Good Question.
April 25, 2012 at 9:17 am
i did and i tried
alter partition scheme psMonthYearByDate next used fgData2013
after adding one i scripted out partition scheme and got this:
CREATE PARTITION SCHEME [psMonthYearByDate] AS PARTITION [pfMonthYearByDate] TO (
[fgData2010], [fgData2010],...
January 14, 2012 at 1:39 pm
Thank you SQLKiwi
SQL Kiwi (11/7/2011)
SELECT
aosms.iStudentid AS [StudentId],
aosms.oldClassID AS [OldClassID],
aosms.newClassID AS [NewClassID]
FROM dbo.ArrayOfStudentMoveSummary AS...
November 11, 2011 at 9:13 am
Thank you Drew.
The subquery is unnecessary. You can write this as follows:
SELECT iStudentid as StudentId, OldClassID, NewClassID
FROM @tblMoveStudentList as StudentMoveSummary
FOR XML auto,ROOT('ArrayOfStudentMoveSummary'),ELEMENTS
If you alias the table, it will use that...
November 11, 2011 at 9:12 am
Thanks GSquared for the SQL
Those static values not needed.
This is what I added
SELECT StudentMoveSummary.* FROM
(SELECT iStudentid as StudentId, OldClassID, NewClassID FROM @tblMoveStudentList) as StudentMoveSummary
FOR XML auto,ROOT('ArrayOfStudentMoveSummary'),ELEMENTS
OUTPUT:
<ArrayOfStudentMoveSummary>
<StudentMoveSummary>
...
November 4, 2011 at 2:42 pm
Viewing 15 posts - 181 through 195 (of 541 total)