Viewing 15 posts - 301 through 315 (of 337 total)
I read that and some other things on those ports. I have NamedPipes and TCP/IP set up for this server. According to the firewall logs it appears to be conecting...
February 14, 2005 at 1:28 pm
Normal Users don't have permission within our VB app to update this row (only I would as admin). I was not in that table at all. I was however running test...
February 11, 2005 at 3:27 pm
Thanks Remi that worked well. I also tried this and it worked:
select
NoteCount,OrderCount,convert (decimal (8,2),((NoteCount/OrderCount)*100)) as Percentage,o.First_Name,o.Last_Name
from v_MTSTM_ORDERCOUNT o JOIN v_MTSTM_NOTECOUNT n ON o.last_name = n.last_name
I'll have to practice...
January 26, 2005 at 1:10 pm
Thanks Jeff I changed the column to a decimal in the table but I am still having the same problem. Should I format the Profit column that gets created in the query? Does...
January 19, 2005 at 8:21 am
The view I pull off of v_MTSTM_ProfitLoss actually converts the table datatype of FLOAT to a SMALLMONEY (columns Carrier_Pay and Customer_Charges). There are no nulls at all.
January 14, 2005 at 8:41 am
Frank thanks for the query. I used that in place of my join that I wrote
CREATE VIEW v_INDEXES
(Table_Name,Index_Name,Table_ID,Index_ID,Fill_Factor)
AS
select
o.name,
i.name,
i.id,
i.indid,
i.origfillfactor
from sysobjects o INNER JOIN sysindexes i
ON o.id = i.id...
January 6, 2005 at 3:17 pm
Actually I have another question. Not that I don't like to research myself it's just I am up to my elbows in white papers and other documentation.
I would like...
January 6, 2005 at 9:08 am
I just relized I posted this in the Yukon section! I have 2000 I guess they are close enough (don't throw anything!)
Thanks for the responses, I'll check into them both....
January 6, 2005 at 6:34 am
Aaron you pretty much nailed it. The xref is a table that contains entries that can be used to describe customers (ie Shipper,Bill To,Carrier, or locations state,city,country codes) so in the directory...
December 24, 2004 at 6:11 am
OK, I had a chance to reboot the whole server this morning. So far so good everything is back to normal. (Glad I waited before installing a hotfix for MDAC...
December 14, 2004 at 6:56 am
Thanks Trigger for your reply. I am a one man IT Dept and nothing has changed. I only restarted the server service and then started the agent. Then all jobs...
December 14, 2004 at 6:21 am
Thanks for the replies. I'll play around with it a bit. I figured you can do pretty much anything with SP's just figured I'd ask.
October 20, 2004 at 2:01 pm
Wesley, the database is small - it takes 26 secs to backup locally and 1:16 to backup remotely. I have now a third hurricane to prepare for and tape backup...
September 24, 2004 at 8:38 am
Wesley what I wanted to do is 3 Full backups every 8th hour (same database to different devices) simultaneuosly and then trans log backups every hour inbetween. Not Full and...
September 24, 2004 at 6:49 am
I Figured it out!!! This is what I needed to do:
Restore Database MTS_AVB1
From DISK = '\\Brokerage135\c$\bkg\sqldata\MTS_TEST3',
DISK = '\\Brokeragesql\f$\backup\mts\MTS_TEST2',
DISK = '\\AVB1\c$\msde\backup\MTS_TEST'
WITH MOVE 'MTS_dat' TO 'c:\msde\data\MTS.mdf',
MOVE 'MTS_log' TO 'c:\msde\data\MTS.ldf',
REPLACE
GO
you have to...
September 23, 2004 at 10:23 am
Viewing 15 posts - 301 through 315 (of 337 total)