Viewing 15 posts - 421 through 435 (of 1,346 total)
In addition no user can be connected to the read only database while a log is trying to restore. It will cause log shipping to fail.
Log Shipping is not a...
November 21, 2006 at 12:31 pm
Strings usually can be implicitly converted to a datetime, but since your table does not have the correct data type it is possible that you have bad data.
so...
create table #test...
November 16, 2006 at 2:45 pm
No that is exactly how to do it.
It is actually very fast, and will not cause much additional overhead.
November 12, 2006 at 10:03 am
you need to try to make all of your triggers allow multi insert, it will only cause problems later if you don't
Try
Create trigger trinsTable
instead of insert on Table...
November 12, 2006 at 10:01 am
Try DATEADD(dd, 2, getdate()),
I cannot test, but often times passing a value to...
November 12, 2006 at 9:52 am
Use the Case function
Something like?
Select IsNull(p.firstName+ ' ','') + IsNull(p.MiddleName+ ' ','') + IsNull(p.LastName,'') as 'Player',
min(case when DATENAME(WEEKDAY, rzd.Date) = 'Monday' then rzd.Total end) as 'Monday',
min(case when DATENAME(WEEKDAY, rzd.Date) =...
November 9, 2006 at 9:17 am
Try This
Select idNo, RefNo
From TableA
Left Join TableB on TableA.IDNo = TableB.IDno
where TableA.cty='NY'
and TableB.IDNo is NULL
November 4, 2006 at 5:22 pm
I'm not exactly sure what you are asking.
Check your servers language setting
From Books Online
Microsoft® SQL Server™ 2000 is installed with 33 natural languages defined...
November 4, 2006 at 12:41 pm
Something Like
select VoterId, a.QuestionText, coalesce(A.AnswerText, b.AnswerText) as AnswerText
from Tab1 a
join Tab2 b on a.QuestionText = b.QuestionText
and a.VoterID = b.VoterID
October 31, 2006 at 2:47 pm
For your example the # of columns in the table need to exactly match # of columns in the file.
If your file looks as you have posted, then there is...
October 31, 2006 at 2:40 pm
Have you tried Books online?
http://msdn2.microsoft.com/en-us/library/ms188365.aspx
Do you have a specific question, issue?
Edit:
http://www.sqlteam.com/item.asp?ItemID=3207
October 31, 2006 at 2:11 pm
Are you getting an error?
I don't see enough information to help U.
October 26, 2006 at 11:52 am
You need to use alter view statements.
and or use the replication procedures to modify schema.
http://msdn2.microsoft.com/en-us/library/ms151870.aspx
October 24, 2006 at 5:41 pm
What is the file that you are using?
can't you open the file in Notepad?
If not, then open the file in word, and select Saveas, and change the format that it...
October 22, 2006 at 3:32 pm
What is the datatype of the Processos.Dataabertura field and the processos.horaabertura field?
Also can you post some sample data of what works, and does not work?
October 20, 2006 at 11:15 am
Viewing 15 posts - 421 through 435 (of 1,346 total)