Viewing 15 posts - 91 through 105 (of 248 total)
Raghavender (9/14/2011)
-- Create Temporary table to store the data
Create Table #SQLInstances
( Value nvarchar(100),
InstanceName nvarchar(100),
Data nvarchar(100))
-- Read Data from Registery
Insert into #SQLInstances
EXECUTE...
September 14, 2011 at 2:52 am
I think below will give the expected result:
-- Create Temporary table to store the data
Create Table #SQLInstances
( Value nvarchar(100),
InstanceName nvarchar(100),
Data nvarchar(100))
-- Read Data from Registery
Insert into #SQLInstances
EXECUTE xp_regread
...
September 14, 2011 at 2:52 am
We are using 'sa' to login into the SQL Server.
September 8, 2011 at 6:12 am
Suresh B. (9/8/2011)
It is a database level trigger. It is common for all the tables. Not just related to that table.
You can check using SSMS UI...
September 8, 2011 at 3:17 am
If I run above script its showing no triggers related to that table.
🙁
September 8, 2011 at 2:40 am
I have checked that but no triggers are there.
September 7, 2011 at 6:06 am
There is no triggers on that table.
September 7, 2011 at 5:13 am
Have a look into below url which will give you detailed information of SQL Server 2005 Architecture:
http://msdn.microsoft.com/en-us/library/ms191135%28v=SQL.90%29.aspx
August 17, 2011 at 3:51 am
DHeath (6/17/2011)
June 17, 2011 at 11:36 am
That link is for whole Instance downgrade....
I need only for one database.
June 17, 2011 at 11:35 am
Yes, transaction file means transaction log file.
Is WLF will come into the picture here ?
April 14, 2011 at 11:06 am
Yes, transaction file means transaction log file.
Is WLF will come into the picture here ?
April 14, 2011 at 11:04 am
and one more question:
For eg: if we have 5 cpus in our server, suggested tempdb files will be 5, is it minimum or maximum ?
March 28, 2011 at 1:55 pm
In between, this is other question on TempDB only:
If we add multiple datafiles to tempdb database we need to keep all datafiles of same size.
Can any body tell me what...
March 28, 2011 at 1:43 pm
Viewing 15 posts - 91 through 105 (of 248 total)