Viewing 15 posts - 1,411 through 1,425 (of 1,825 total)
So .... what do you expect and want to happen if the resulting number cant fit into the storage space ?
October 12, 2009 at 6:12 am
Are you sure you want / need a decimal(18,17).
Thats an 18 digit number with a precision of 17 decimal places.
ie
1.12345678901234567
October 12, 2009 at 5:46 am
Try this for deadlock analysis
http://www.sqlservercentral.com/articles/deadlock/65614/
Try these for slow-downs
October 12, 2009 at 5:43 am
Try this link for solutions
October 12, 2009 at 5:38 am
Ross McMicken (10/12/2009)
October 12, 2009 at 5:02 am
Something like this ?...
select * from yourtable tab1 join yourtable tab2
on tab1.rowid <> tab2.rowid
...
October 12, 2009 at 4:44 am
Assuming that the codes are unique
insert into related(ParentId,Code2)
Select Parent.Id,
Code2
from Parent,
#TmpOther
where Parent.Code1 = #TmpOther.Code1
Else...
October 9, 2009 at 8:56 am
check out BOL for transaction isolation levels , you'll want READ UNCOMMITTED
BUT
here's a good example of that being a very bad idea
http://sqlblogcasts.com/blogs/tonyrogerson/archive/2006/11/10/1280.aspx
October 9, 2009 at 7:21 am
Try this
SELECT *
FROM CUSTINVOICEJOUR
LEFT OUTER JOIN SALESLINE ON SALESLINE.SALESID = dbo.CUSTINVOICEJOUR.SALESID
...
October 9, 2009 at 3:40 am
ItalianOlgi (10/9/2009)
Moral lecture is irrelevant,I am still doing what I am doing!
Whatever , but as already pointed out , its not a moral argument , its a legal argument.
It you...
October 9, 2009 at 2:30 am
Grant Fritchey (10/8/2009)
Hammmer. That's the answer. A good hammer will fix or replace just about anything.
Must of skipped over that chapter in your book.
October 8, 2009 at 5:51 am
Jack Corbett (10/8/2009)
Abracadabra, alakazam, alashabast server run fast!
My standard line is "I could try shouting at the server, but im not sure that will help".
I did have one particularly stressed...
October 8, 2009 at 5:25 am
Can anyone wave their magic sql wand ?
http://www.sqlservercentral.com/Forums/Topic799860-149-1.aspx
EDIT :
Maybe its ItalianOlgi's first day on the job
October 8, 2009 at 4:56 am
Viewing 15 posts - 1,411 through 1,425 (of 1,825 total)