Viewing 15 posts - 16 through 30 (of 64 total)
Do you have Vista's UAC turned off? If not, I would attempt the connections after turning User Account Control off as well.
I see where you have the firewall and...
[font="Arial"]Clifton G. Collins III[/font]
August 13, 2007 at 7:10 am
You can return the results as a recordset with the name in the row or as an output parameter.
Something like this:
CREATE PROCEDURE dbo.MyProc
(
@tg varchar(10),
@namereturn varchar(25) OUTPUT
)
AS
...
Select @namereturn = somecolumn...
[font="Arial"]Clifton G. Collins III[/font]
August 13, 2007 at 7:05 am
How is the connection string testing going?
[font="Arial"]Clifton G. Collins III[/font]
August 8, 2007 at 7:35 am
I recommend changing a one or two of the stored procedures to use #temp tables instead of table variables. Use: if exist, drop the temp table in two places as a best...
[font="Arial"]Clifton G. Collins III[/font]
August 7, 2007 at 10:08 am
It appears that the Balance column is not numeric but char(16). You need to do one of the following:
a) change the Balance column to a money or float datatype
b) Select...
[font="Arial"]Clifton G. Collins III[/font]
August 7, 2007 at 9:51 am
The other thought, if you are setting the 12.25 to a int variable or column, change to the appropriate datatype that will handle decimals, (i.e. money or decimal).
[font="Arial"]Clifton G. Collins III[/font]
August 7, 2007 at 9:46 am
Generically:
'text string characters here' + Cast(12345.25 as varchar(12)) + ' more characters here'
In a Select statement from a table
Select ColumnVarChar + Cast(ColumnMoney as varchar(12)) From YourTable
In a stored procedure using...
[font="Arial"]Clifton G. Collins III[/font]
August 7, 2007 at 9:32 am
You comment "don't have lots of time to spend in this" is concerning. Is this important enough to even continue? The replacement for time, might be throwing hardware/money at it.
My...
[font="Arial"]Clifton G. Collins III[/font]
August 7, 2007 at 9:27 am
Are you attempting to connect
A) an Access application (mdb or adp) to a SQL 2005 server?
or
B) a SQL 2005 server to an access mdb database file?
[font="Arial"]Clifton G. Collins III[/font]
August 7, 2007 at 9:20 am
It is possible that the domain user name CHARLEY\ACT7 has had a password change. I would edit the SQLServerAgent service Log On As properties, entering the correct password for the...
[font="Arial"]Clifton G. Collins III[/font]
August 7, 2007 at 9:17 am
I think you are faced with two options:
A) Modify the application that creates the database to generate new stored procedures/views after the databases are online. Eliminates the cursor and dynamic...
[font="Arial"]Clifton G. Collins III[/font]
August 7, 2007 at 9:06 am
Is sqlcmd included in SQL 2000 Enterprise manager or are you trying to connect EM tools to SQL 2005? If so that may be the issue. Is you are using...
[font="Arial"]Clifton G. Collins III[/font]
August 6, 2007 at 9:41 am
Renaming the sql servers may not be the only issue that you run into when 'cloning'. You may need to reinstall MSDTC and clean up any DCOM GUID/permission issues.
I...
[font="Arial"]Clifton G. Collins III[/font]
August 6, 2007 at 9:15 am
You need to find you master and msdb files and move them back to the original location. Move only the user database mdf, ldf and if any ndf files to...
[font="Arial"]Clifton G. Collins III[/font]
August 6, 2007 at 9:06 am
I would attempt to use both the sql profiler and the windows system performance tools to monitor the cpu and disk usage during the day. correlating the slow times in...
[font="Arial"]Clifton G. Collins III[/font]
August 3, 2007 at 9:20 am
Viewing 15 posts - 16 through 30 (of 64 total)