Viewing 15 posts - 2,491 through 2,505 (of 5,356 total)
I would carefully watch the app that is updating that table.
Hey, that will be my 3,000 post. Congrats to me
ROTFL ![]()
February 26, 2004 at 7:37 am
hm... I always thought that defining a primarykey implies uniqueness ![]()
What are the results of dbcc checkdb?
February 26, 2004 at 7:26 am
All I can offer right now, is to contact Erland (as the author of my reference article) and ask him. I know he's working on an update of the article...
February 26, 2004 at 7:18 am
set nocount on
set statistics time on
select dateadd(d,datediff(d,0,msgdatereceived),0) from mails_header
SELECT CAST(FLOOR(CAST(msgdatereceived as float)) AS smalldatetime) from mails_header
select convert(varchar(10),msgdatereceived,120) from mails_header
set statistics time off
set nocount off
SQL Server Execution Times:
CPU time =...
February 26, 2004 at 7:14 am
Would you like a yes or a no as the answer? ![]()
I know, I know. Every little bit counts, but I would say if...
February 26, 2004 at 7:06 am
Yes, it should almost always be faster!
But I am having a deja vu right now
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=102103
![]()
February 26, 2004 at 6:58 am
BTW, Why do you want to pursue an MCDBA? I'm assuming you're intending to finish high school before pursuing a career. Certifications require upgrading with new releases of software, to remain...
February 26, 2004 at 6:42 am
I don't know Oracle, but I would take a look at BOL for DECLARE CURSOR
February 26, 2004 at 6:00 am
How do you get trailing 0s in a numeric column?
A look at the table in EM should not show such thing, a linked table in Access neither. Don't get confused...
February 26, 2004 at 5:54 am
It shouldn't make a difference. AFAIK relations are for data integrity and don't have an effect on JOINs.
February 26, 2004 at 4:02 am
Any reasons for float?
declare @flt decimal(19,3)
select @flt = 500000000000.845
select convert(varchar, @flt)
------------------------------
500000000000.845
(1 row(s) affected)
February 26, 2004 at 3:32 am
Can you post your whole statement?
February 26, 2004 at 3:14 am
First of all I would make sure if you really need unicode columns. ![]()
Maybe a little example will illustrate the difference
declare @a varchar(20)
declare @b-2...
February 26, 2004 at 3:12 am
Viewing 15 posts - 2,491 through 2,505 (of 5,356 total)