Viewing 15 posts - 106 through 120 (of 426 total)
Since you state that the problem began after changing the sa password:
In EM choose SQL Server Agent, right-click and choose Properties, Connection tab
Is the SQL Server connection using sa? If...
June 6, 2006 at 11:10 pm
Sounds like the SQL Box's MSSQLSERVER Service account does not have enough permissions to the \\server-ip\folder\Accessdatabase.mdb.
Are you using the Local System account? If so grant permissions on the the folder/share...
June 6, 2006 at 3:36 am
You could play with the Services.msc settings for Recovery to attempt to start the service, however this will not account for the DC being offline for a long time as...
June 6, 2006 at 2:52 am
Unless you are running as Local Administrator, you do not have permission to write to the C:\Documents and Settings folder, try changing this to a folder that you can write...
June 6, 2006 at 2:22 am
Try this:
if object_id('tempdb.dbo.#t') is not null drop table #t
create table #t (ID int identity not null, Childid int, Siblingid int)
insert #t (Childid, Siblingid)
select 2221, 3331
union all select 2221, 3332
union...
May 23, 2006 at 12:08 am
You say Small Business Server, what edition?
SBS 2003 Premium Edition comes with SQL Server 2000, and is licensed per seat, usually bundled with 5 User CALs, and the SBS...
May 22, 2006 at 11:19 pm
How many Terminal Server sessions?
You have alocated 1/2 the server memory to SQL Server, and left the rest to be shared by the OS and Terminal Server clients, so...
May 19, 2006 at 4:53 am
Try using:
NTAUTHORITY\Authenticated Users
Instead of
Authenticated Users
Andy
May 18, 2006 at 1:30 am
Try:
SELECT UPPER(ISNULL(LEFT(f_name,1),'-')
+ISNULL(LEFT(m_name,1),'-')
+ISNULL(LEFT(l_name,1),'-')) AS Initials
FROM MyTable
ORDER BY Initials
<edited>
Andy
May 18, 2006 at 1:11 am
Try:
IF DB_NAME() = 'Master'
GOTO Exit
-- REST of your script
GOTO Quit
Exit:
'**************************************************************************************'
PRINT '************** Master db is selected. Please select correct database *****************'
PRINT '**************************************************************************************'
Quit:
Andy
May 18, 2006 at 1:03 am
Add multiple HDs and you can also rotate backups offsite.
We find that for a multi-server backup solution, that a Firewire external HD provides better throughput than USB.
I use the native...
May 17, 2006 at 10:13 pm
If you are stating that the use of CONVERT(varchar,ISNULL(Acct_Nbr,'')) without specifying the varchar(<length> is bad, I agree, however given no DDL for the table...
May 14, 2006 at 2:38 am
Try moving the addition and many of the other WHERE clause items to the JOIN ON clause. Was:
...AND TXUYUV00.UBNR=TXUYUF01.VBNR...
changed:
...AND TXUYUV00.UBNR=TXUYUF01.VBNR AND TXUYUV00.UBNR='001'...
This should help buy eliminating records early on in...
May 12, 2006 at 3:45 am
The reason for the error is the fact that you have multiple sysprocesses records added via the "join" with context_info, which you control. You are effectively asking for all sysprocess...
May 12, 2006 at 2:31 am
Place your Windows CD in the drive, choose the <cd drive>:\VALUEADD\MSFT\NET\NETBEUI folder, right-click NETNBF.INF and choose install. You will be limited in connecting to SQL Server using the named pipes...
May 10, 2006 at 11:48 pm
Viewing 15 posts - 106 through 120 (of 426 total)