Viewing 15 posts - 3,931 through 3,945 (of 5,103 total)
Someone posted this a while ago
SELECT FG.groupid AS GroupID
, SUBSTRING(FG.groupname,1,30) AS FilegroupName
, SUBSTRING(O.name,1,30) AS ObjectName
, ix.indid, ix.name as indexname
, F.filename as FileNames
FROM sysobjects O
INNER JOIN sysindexes IX
...
* Noel
April 15, 2005 at 12:35 pm
>>Binding SQL Server instances to distinct IP addresses<<
You Can't ... unless you use clustering
hth
* Noel
April 15, 2005 at 12:33 pm
Raymond,
I overlooked that! and I am not able to test it but this should "kill" my bug ![]()
SELECT
cl.CustID as Customer,
cl.CallStatus as Status,
RIGHT(cl.CallID, 4) AS...
* Noel
April 15, 2005 at 12:06 pm
April 15, 2005 at 12:00 pm
Two Problems
if you add up the maximum filed length of those you specified on the query it will be > 8060 (the maximum row size)
you have to limit that...
* Noel
April 15, 2005 at 10:14 am
But..
If you are planning to use many BIT columns and the table can be large guess what you can't index it
it is...
* Noel
April 15, 2005 at 10:08 am
Divide and conquer ![]()
SELECT
cl.CustID as Customer,
cl.CallStatus as Status,
RIGHT(cl.CallID, 4) AS HEAT,
cl.PVCS,
cl.Title,
cl.CallDesc AS Description,
cl.RecvdDate AS Date,
JournalEntered,
j2.EntryText AS Journal
FROM
CallLog cl
left join
(select callid,...
* Noel
April 15, 2005 at 10:03 am
First:
Can you verify all those dates are in the range-> January 1, 1900, through June 6, 2079
Second:
make sure that the SET DATEFORMAT dmy is used (as recomended above)
Third:
what is the...
* Noel
April 15, 2005 at 9:37 am
Just Try the following in the posted order ![]()
* Noel
April 15, 2005 at 9:12 am
I have to differ with that statement. When you have such large DB a product like litespeed will compress your backups on the fly therefore the copy and handling of...
* Noel
April 14, 2005 at 2:18 pm
Unfortunately that procedure has this limitations:
* Noel
April 14, 2005 at 1:26 pm
Ok this has the limitation that only work for upto 50 years of service ![]()
I think it does what you want 
* Noel
April 14, 2005 at 1:12 pm
sp_MSdependencies does uses sysdepends, therefore garbage in ... ![]()
* Noel
April 14, 2005 at 10:00 am
yes that's the purpose for the delay but you have an explicit transaction opened that you should commit ASAP.
* Noel
April 14, 2005 at 9:37 am
Viewing 15 posts - 3,931 through 3,945 (of 5,103 total)