Viewing 15 posts - 1,096 through 1,110 (of 1,248 total)
Based on my experience, this problem occurs when changing local system account. You need to modify settings in your domain with domain admin privilege. Although you use an intranet, if...
November 28, 2006 at 1:36 pm
PlusSELECT * FROM master..sysprocesses
November 28, 2006 at 10:05 am
Someone changed the account/
November 28, 2006 at 10:02 am
When using SELECT statement, system may lock the data pages while reading data. It is quite normal to the occurance of such locks. If the locks last too long, you...
November 28, 2006 at 10:00 am
Using cursor (master..sysdatabases, xx..sysobjects)?
Using sp_msforeachdb?
Using sp_msforeachtable?
November 28, 2006 at 9:50 am
That might be problem. Does the local account have the privilege to access the text file? Or more precisely, does the account you used have the privilege to access the...
November 28, 2006 at 9:44 am
I believe you have to use ActiveX. That is the power of DTS.
November 28, 2006 at 9:36 am
SELECT CAST(2000.00 AS INT)
November 28, 2006 at 9:31 am
Are you sure you have privilege to access the text file?
November 28, 2006 at 9:25 am
I tested the following script without any error.
SELECT DATENAME(Year, CONVERT(DATETIME,'20060318', 102))
I believe that we may have to convert the integer to string.
November 28, 2006 at 9:20 am
How about something like:
SELECT DATENAME(YEAR, CONVERT(DATETIME, run_date, 102)) +',' + DATENAME(MONTH, CONVERT(DATETIME, run_date, 102)) + ',' + DATENAME(DAY, CONVERT(DATETIME, run_date, 102)) = ',' DATENAME(WEEKDAY, CONVERT(DATETIME, run_date, 102))
November 28, 2006 at 9:13 am
Did you try to run the stored procedure debug on the local machine?
November 24, 2006 at 5:34 pm
In order ot dig out up to the tsql/vbscript, you may have to use SQL Server Profiler, I believe.
November 24, 2006 at 5:30 pm
Viewing 15 posts - 1,096 through 1,110 (of 1,248 total)