Viewing 15 posts - 256 through 270 (of 545 total)
July 10, 2008 at 8:32 am
one of the raw methods that goes back to SQL 2000 is to use sysprocesses. You have the CPU and Dbid column, that you can track with hostname and loginame...
July 10, 2008 at 8:25 am
July 10, 2008 at 8:19 am
Excellent.. and adding to above:
Check Index Fragmentation:
REINDEX if Index Fragmentation are HIGH. based on the Values of Logical Scan Fragmentation in DBCC SHOWCONTIG OR
select db_name(database_id) as DatabaseName,object_name (object_id,database_id) as...
July 10, 2008 at 8:11 am
It Depends, and falls back to how flexiable your organization is in spending $$ and also depends if there are any unsed bays.
July 10, 2008 at 7:51 am
Adding to it: It shouldnt be RUN Frequently, I would recommend once a Week.
July 10, 2008 at 7:47 am
SQLNCLI.msi is available in the SQL Server\Setup BootStrap\ Folder. Try to Run that and see if this installs the required Providers.
July 9, 2008 at 9:00 pm
Hurray.. to John and Michael.. Great Explanation.
I am Just curious to know.. how long does it take you to REBUILD your indexes on these BIG Tables.. and How often do...
July 9, 2008 at 8:04 pm
use EncryptSensitiveWithUserKey as you Protectionlevel in your SSIS PAckage and also check the username pass in the provider in Dataset.
Also as andrew suggested use configuration file. this will ease things...
July 9, 2008 at 7:44 pm
What do you mean by your first question. Pl clarify and regarding second Question, yes you can design Reports on ORACLE Database same way you do it for SQL Server.
you...
July 9, 2008 at 7:32 pm
Can you go into the SQL Server folder (installation path) and check to see if you have the sqlwb.exe installed.
July 9, 2008 at 11:40 am
Do you want some like this:
exec master..xp_logininfo 'DomainGroupAccount','members'
This will list all the users in the domain Group, which is applied in the SQl Server.
July 9, 2008 at 11:30 am
After upgrading the Databases:
1. Change the Compatiility Level to 90
2. DBCC UPDATEUSAGE
3. DBCC CHECKDB (DatabaseName)
4. Copy all the logins associated with the Database OR ALL using this Scripts from...
July 9, 2008 at 11:20 am
Try this:
ALTER DATABASE DatabaseName SET DISABLE_BROKER;
July 9, 2008 at 11:16 am
select
*
from master..sysprocesses
Where loginame like 'MIKE%'
and HOSTNAME like 'your hostname'
only the columns that you can dig down for a Login are:
NT_USERNAME,LOGINAME AND HOSTNAME for yourHostName
July 9, 2008 at 11:07 am
Viewing 15 posts - 256 through 270 (of 545 total)