Viewing 14 posts - 121 through 134 (of 134 total)
Try creating a stored procedure that the user does have permission to. The procedure could access MSDB..sp_help_jobs or the system tables directly (although I do not suggest accessing the system...
December 11, 2006 at 2:34 pm
1) You could try changing EM connection string to use SA (or a different SQL user just so you are not using NT Auth) and see if that effects the...
December 11, 2006 at 1:38 pm
Should also note that if applications running against sql server that restarting the services may cause a conflict when restarted.
Example: if an applications is running a transaction through Com +...
December 5, 2006 at 1:53 pm
Not to mention possibly taking a job from a qualified SQL Server DBA that needs it.
Besides t-sql is t-sql there are only simple differences between the syntax from SQL...
December 5, 2006 at 1:23 pm
You can also run SP_who2 'active' to see what active connections are doing.
How is the VB application connecting to SQL Server? The are many timeouts some sql server some other...
December 5, 2006 at 1:16 pm
I am a SQL Server DBA from Minnesota and I am intrested in this position, my email address is JD785727@Yahoo.com.
Thanks
December 5, 2006 at 9:36 am
I did not give a but why just a will work.
December 1, 2006 at 10:42 am
Then Backup the database when you are done. You have to do what you have to do.
November 30, 2006 at 9:26 am
In the future:
I have dealt with this in many ways.
I am about 99.9% positive this will work.
November 29, 2006 at 1:05 pm
Correct - the suggestion is to do a self join
November 29, 2006 at 11:37 am
I have come across this a number of times with different access points.
I have resolved this two ways, one is below the other is reinstalling SQL Server.
You...
November 29, 2006 at 11:31 am
You could use xp_cmdshell to call osql: see below>>
USE PUBS
GO
CREATE PROCEDURE ExportTest1
AS
SET NOCOUNT ON
DECLARE @cmd VARCHAR (255)
SET @cmd = 'OSQL -E -S 424XG61\DBA -d Pubs -Q "EXIT(SET NOCOUNT ON...
November 28, 2006 at 1:40 pm
You can also get the results by using temp tables:
USE Pubs
Go
CREATE TABLE #OrderNum
(ord_Num VARCHAR (20))
INSERT #OrderNum
SELECT top 20 Ord_Num
FROM sales
SELECT TOP 10 ord_Num
FROM #OrderNum
SELECT Top 10 ord_Num
FROM #OrderNum
WHERE ord_Num...
November 28, 2006 at 1:16 pm
November 28, 2006 at 12:47 pm
Viewing 14 posts - 121 through 134 (of 134 total)