Viewing 15 posts - 211 through 225 (of 663 total)
What is the ¿ÀÀü characters for am/pm?
Like to think if you remove the ¿ÀÀü it should work, specially with yyyy-mm-dd.
What is the korean default date format.
Have you tried set...
August 31, 2003 at 2:51 am
Check BOL 2000: UPDATE (Level 4)
The 6.x example may give a hint why it was changed. I think the update can be a bit ambigous to resolve. Example one can...
August 31, 2003 at 2:35 am
Just found this article http://support.microsoft.com/default.aspx?scid=kb;en-us;282286
August 28, 2003 at 9:52 pm
Why I ask about 365 x 24, is there anytime of the day that one can get all the users / locks of the database. In the article, another site...
August 28, 2003 at 9:45 pm
Is this a 365 x 24 system?
See article at http://www.sqlmag.com/forums/messageview.cfm?catid=3&threadid=9568
August 28, 2003 at 9:15 pm
800 hours / 24 = 33.33 days
What is the database size / processor / memory / disks of this machine?
Do you use SQL Server SQLMaint?
August 28, 2003 at 8:29 pm
Can you Restart SQL and check if problem 'go away'. Another person suggested detach/attach
Articles(bugs) at http://support.microsoft.com/?kbid=814579 and http://support.microsoft.com/default.aspx?scid=kb;EN-US;317375
August 28, 2003 at 8:16 pm
Have a look at Frank's reference at http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=15691&FORUM_ID=9&CAT_ID=1&Topic_Title=ntext+confusion&Forum_Title=General
August 28, 2003 at 6:10 pm
Try DBCC OPENTRAN, see BOL 2000.
Do you run replication on the database
August 28, 2003 at 6:02 pm
Create View MyDate as Select GetDate() as TheSystemDate
GO
Create Function SomeFunction (@CustomerCode Int)
Returns VarChar(20) AS
Begin
Declare @Year Int
Select @Year=DatePart(Year,TheSystemDate) From dbo.MyDate
Return(Cast(@CustomerCode as VarChar(10))+Cast(@Year as Varchar(4))+'01')
End
GO
Select 'Answer',dbo.SomeFunction(10)
GO
Drop function...
August 28, 2003 at 6:00 pm
Create Table Tmp(ColA Money,COlB Money,ColC Money)
GO
Insert Tmp Values(1,2,3)
Insert Tmp Values(4,5,6)
Insert Tmp Values(7,8,9)
GO
Select ASum,Asum/ColC
From (
Select ColA+ColB as ASum,ColC
From Tmp) as F(ASum,COlC)
GO
Drop Table Tmp
August 28, 2003 at 5:40 pm
Did something similar to JeffE.
Setup pivot table from dummy data range in spreadsheet. When user selects from combo (month) an stored prog is executed, returns data, repopulate / update...
August 28, 2003 at 4:47 pm
SQL 2000 in general or only after sp3?
August 28, 2003 at 3:50 pm
Frank, excellent reference, read it myself last month.
August 28, 2003 at 12:04 am
Read SQL Server Books Online(2000) about TEXT types, "sp_tableoption 'Text in row'",READTEXT, WRITETEXT and TEXTPTR.
August 27, 2003 at 1:35 am
Viewing 15 posts - 211 through 225 (of 663 total)