Viewing 15 posts - 2,206 through 2,220 (of 2,436 total)
I agree that UNC's are the way to go to avoid potential conflicts. You also might want to check security. In other words do the service accounts have access to...
May 11, 2005 at 9:28 am
To make it easy (and get back to the subject) ... I'd use Access ! Realistically why would you waste SQL server on a really small single user database. Or...
May 11, 2005 at 9:19 am
Yelena is on target ... At my site we have a dba_stats database on the MSX server and all other servers write to it avoiding all of the mentioned issues....
May 11, 2005 at 9:05 am
Could you not make a request of the hosting provider to carve you out a slice of disk space ? That's what I mistakenly assumed you had requested and the...
May 9, 2005 at 9:13 am
It sounds as if your hands are tied. Maybe it's time to look for another more 'dba' friendly hosting service ...
May 9, 2005 at 9:04 am
For starters, could you list your hardware, OS version and service pack along with your SQL Server version and service pack ? Also, maybe the forst 10-20 lines of the...
May 6, 2005 at 1:33 pm
happycat59 is 110% correct. SQL Server does not care. I have 22 instances on SAN storage ... some are standard and some are enterprise.
May 5, 2005 at 9:26 am
I watched the movie on Monday. It was a little over 90 minutes in length. Had I not read the books I would have totally missed most of the messages....
May 4, 2005 at 10:07 am
'autogrowth' is both a blessing and a curse. A blessing to those who do not monitor database size and growth patterns and a curse to those who depend on it....
May 4, 2005 at 10:04 am
or you can use
set quoted_identifier off
with this setting you can mix'n'match both single and double quotes.
May 4, 2005 at 9:51 am
Just a thought since the errors seem both random and spurious. Have you run hardware diagnostics ? I'd start with memory first since the errors appear and disappear randomly. Then...
May 4, 2005 at 8:59 am
Stored procedure execution. I have an 'MSX' Server executing/downloading tasks/Jobs to 'target' servers. Some of the target server procedures reference a database on the MSX server.
May 3, 2005 at 1:27 pm
Actually I've had to take this a bit farther in some cases ...
SET ANSI_NULLS ON
SET ANSI_WARNINGS ON
GO
CREATE PROC A
AS
SET ANSI_NULLS ON
SET ANSI_WARNINGS ON
Select null
GO
May 3, 2005 at 1:17 pm
To start with here's a few handy links:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;314546
http://support.microsoft.com/default.aspx?scid=kb;en-us;246133&Product=sql2k
http://support.microsoft.com/kb/224071/EN-US/
http://support.microsoft.com/kb/240872/EN-US/
http://support.microsoft.com/default.aspx?scid=kb;EN-US;295732
As for connections via ODBC, well, you've already gone down the hard path by using computernames or fully...
May 3, 2005 at 1:15 pm
Viewing 15 posts - 2,206 through 2,220 (of 2,436 total)