Viewing 10 posts - 31 through 40 (of 40 total)
Thanks a lot.
Rgds
Mohan Kumar VS
May 27, 2009 at 6:20 am
Thanks for your response. I've idenfied the same.
Can you please let me know if there is any script to change Non-clustered index to Clustered Index?
Right...
May 25, 2009 at 4:32 am
Hi
The details are as below for a table :
ReservedSpace: 10776 KB
DataSpace : 8640 KB
CombinedIndex Space: 1488 KB
UnusedSpace : 648 KB
When I executed DBCC SHOWCONTIG ('TableName'),...
May 23, 2009 at 4:22 am
Swati
Windows Authentication requires that SQL Server services must run as domain users in trusted domains or as network services.
To authenticate both ends of a connection, Windows Authentication uses the credentials...
April 29, 2009 at 6:51 am
Swati
You can try this:
SELECT CustomerID, CompanyName
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'\\servername\Program Files\Microsoft Office\OFFICE11\SAMPLES\Northwind.mdb'; -- change the path here
'admin';'',Customers)
GO
Rgds
Mohan...
April 29, 2009 at 5:24 am
Tara
Hope this will be helpful....
-- Create Tmp Table
create table #tmp1 (firstname varchar(100))
-- Insert records
insert into #tmp1 values ('BugdetRev120909_PA')
insert into #tmp1 values ('SirsregionRev_CA')
insert into #tmp1 values ('BugdetRev120909_PAxxx')
insert into #tmp1 values...
April 29, 2009 at 5:18 am
Vandana
You can use sys.dm_tran_locks dynamic view to get information about currently active lock manager resources.
Rgds
Mohan Kumar VS
April 29, 2009 at 5:07 am
Vandana
Regarding:
The table should have row-locking enabled to ensure that one user cannot delete a row that someone else is working on .
You can use SET TRANSACTION ISOLATION LEVEL REPEATABLE READ;
...
April 29, 2009 at 5:03 am
backup database [dbaScripts] to disk=N'C:\backup\dbaScripts_1.bak',
disk=N'd:\backup\dbaScripts_2.bak' with stats=10;
Rgds
Mohan Kumar VS
April 27, 2009 at 10:11 pm
Viewing 10 posts - 31 through 40 (of 40 total)