Viewing 15 posts - 166 through 180 (of 182 total)
One simple approach is to create an alias in the SQL Server client networks using tcp/ip
ALIAS:SERVER1
HOST:10.0.0.10
PORT:1433
The in EM under the security tab create a linked server using the alias as...
October 20, 2005 at 7:50 pm
Please provide sp_configure results as I want to see max and min server memory values.
October 20, 2005 at 7:37 pm
First of all, from the UNIX command line isql into the Sybase data server and issue Select @@version, which will let you know the version of Sybase you are running....
October 20, 2005 at 7:32 pm
Are you asking if you can access a Sybase data server on Solaris from a windows platform?
October 20, 2005 at 11:41 am
Why can't you use a trigger?
October 20, 2005 at 6:27 am
Is a subquery needed
Select thedate, avg(duration), sum(duration)
From table
Group By thedate
If you have multiple runs a day use:
Convert(DateTime, Convert(VarChar, thedate, 101))
Which converts the date 01/01/2005 09:00:00.00 to 01/01/2005 and then convert it...
October 20, 2005 at 5:31 am
You are not being very clear but hers some general ideas. Use sp_who2 to inform you if blocking locks are taking place at run time. The part about logging and trapping errors would...
October 20, 2005 at 5:16 am
Are you also trying to use AWE with sp4?
October 20, 2005 at 5:04 am
Yes, you can just change the service owner for both in the service window.
October 20, 2005 at 5:00 am
Are you going from MS SQL Server to Sybase or vis versa.
What version of Sybase are you using?
October 19, 2005 at 6:41 pm
If I am not mistaken from your initial comments a reboot did not cause tempdb to be sized at 800M, but it happened during normal operation. Is there any jobs...
October 19, 2005 at 5:41 pm
Sounds like you are you trying to kill your own session?
October 19, 2005 at 4:57 pm
I would think more info is needed:
Table structure including indexes and the SQL ran against it.
As far as maintenanace goes the update stats and running sp_recompile are great but...
October 19, 2005 at 4:52 pm
Add a count to test for duplicates and more
Select duplicating_value, Count(*)
From table
Group By duplicating_value
Having Count(*) > 1
Results:
KORY 5
MARK 2
October 19, 2005 at 4:37 pm
While your at it:
Select db_name(dbid) From master.dbo.sysdatabases
Select db_id('databasename')
sp_helpdb
sp_helpdb 'databasename'
These are nice to get use to when resolving system problems.
October 19, 2005 at 4:33 pm
Viewing 15 posts - 166 through 180 (of 182 total)