Viewing 8 posts - 316 through 323 (of 323 total)
Use Unicode where ever possible.
In ASP / ASP.Net or your webpages, set the page encoding to Unicode (UTF-8). Your web pages and web browser will then talk in Unicode. Check...
May 21, 2004 at 12:20 am
To allow SQL Server to access network shares:
1. SQL Server service must login as a windows domain user
2. The Sql Server domain user must have 'Log on as a service'
3. The Sql...
May 19, 2004 at 7:48 pm
hmm. Remember that the sql is executed on the server, so:
A. the file must exist on the server, and
B. the SYSTEM user (or the user SQL Server logins in as)...
May 19, 2004 at 7:15 pm
Most likely the problem is to do with the UNC path '\\work\C Drive\abcd.dbf'
SQL Server by default runs under the SYSTEM account, which does not have network access, so cannot access...
May 19, 2004 at 7:01 pm
For what reason do you need to determine the origin of the install media?
SELECT @@VERSION
EXEC xp_msver
Return similar information about the editition and build number of SQL Server.
SQL Server itself...
May 19, 2004 at 12:34 am
DECLARE @fileexists int
EXEC master..xp_fileexist 'c:\myfile.txt', @fileexists OUT
IF @fileexists = 1 -- The file exists
PRINT 'File Exists' -- Do what you want here
May 19, 2004 at 12:23 am
1. Fix up your incorrect space usage reporting with:
DBCC UPDATEUSAGE ('MyDatabase')
2. Specify the WITH SORT_IN_TEMPDB option in your CREATE INDEX statement. This tells SQL Server to use your TempDB to while...
May 18, 2004 at 1:09 am
First, check "Autostart SQL Server" is ticked in your SQL Server's Properties (In SQL Enterprise Manager, right-click the server and choose properties. The autostart options are in the general tab).
Have...
May 6, 2004 at 11:10 pm
Viewing 8 posts - 316 through 323 (of 323 total)