Viewing 15 posts - 121 through 135 (of 140 total)
This will show you the owner of any databases
select
name, suser_sname(sid) [User]
from
...
August 10, 2006 at 2:16 am
But what happens when it's time to move the solution into Production? Unless you allow Access and Excel (and whatever else they end up wanting on the DEV box) onto the...
June 13, 2006 at 3:21 am
The syntax would be:
GRANT CREATE FUNCTION TO <user>
June 1, 2006 at 8:57 am
Using Query Analyser
GRANT CREATE VIEW TO <user>
GRANT SELECT ON <table> TO <user>
May 31, 2006 at 3:50 am
Build a sql string and execute.
DECLARE
@SQLString varchar(1000)
DECLARE @S2 nvarchar(1000)
May 3, 2006 at 4:08 am
You might want to search the forum for SQL Server Job Scheduling. I remember someone posting about setting a schdule to run at fractions of a minute (editing a value in...
April 28, 2006 at 3:34 am
You can't. You can only install the client tools or MSDE on XP.
To install an actual server instance you need a "proper" server O/S (Win 2000/2003 server editions)
April 25, 2006 at 4:14 am
Since NOLOCK does not apply any locks the time saved is from the Lock acquired, Lock released. It does run the risk of dirty reads if there are any transactions...
April 20, 2006 at 4:17 am
If it is a fact table then it's most likely, as Allen originally suggested, to be populated via a DTS package.
Also if the db has been copied onto the test server...
March 16, 2006 at 3:18 am
All the syntax errors go away once you remove the comma after
GROUP BY dd.CustomerNumber,
March 1, 2006 at 7:37 am
Permissions are the usual suspect.
When the job is run manually it runs with that users privileges on. When it is run as a job it runs with the privileges of the...
January 5, 2006 at 4:06 am
If you don't want your job to report a failure then you will need to remove the
Main = DTSTaskExecResult_Failure
You might want to create an empty (null) file and have the DTS...
December 22, 2005 at 3:20 am
Theare the files that must have matching versions
%SystemRoot%\system32\sqlsrv32.dll
%SystemRoot%\system32\sqlsrv32.rll
%SystemRoot%\system32\odbcbcp.dll
There is a free Microsoft tool that can be used to check versions. Below is the link.
December 12, 2005 at 1:34 am
Oh b####r. That's the path our It department is heading...
December 9, 2005 at 3:19 am
Viewing 15 posts - 121 through 135 (of 140 total)