Viewing 15 posts - 61 through 75 (of 87 total)
Hi,
Please help me to understand your lines "A being the primary key, B unique key. I am creating clustered index on A,B." Please send the complete Script of Table.
To answer...
October 4, 2010 at 3:53 am
USE <DatabaseName>
Go
CREATE TABLE EmpTable
(Poistion Varchar(50), Name Varchar(50))
GO
INSERT EmpTable
VALUES ('Manager', 'Scott')
INSERT EmpTable
VALUES('manager', 'Jhon')
INSERT EmpTable
VALUES('Manager','adam')
INSERT EmpTable
VALUES('Accountant','marry')
INSERT EmpTable
VALUES('Accountant','zee')
GO
-- Funcation
CREATE FUNCTION [dbo].[fn_ReturnName]
(@Poistion Varchar(50))
RETURNS VARCHAR(MAX)
AS
BEGIN
DECLARE @Name VARCHAR(MAX)
SELECT @Name =...
October 1, 2010 at 4:18 am
In SSMS the same T-SQL taking around 1 Hour to complete the all 2000 databases backup and once first database backup completed it disply the result BACKUP DATABASE successfully processed...
September 9, 2010 at 6:17 am
Ok!
What I understand that when SQL Agent Job Executes the T-SQL then the cursor issues the cmds "BACKUP DATABASE <dbNam> ...” for all databases and cursor loop do not wait...
September 9, 2010 at 5:20 am
Hi,
Actually I would like to consolidate/merge two instances of SSRS into one instance of SSRS.
What will be the best way to merge two Instances of SSRS? How I will migrate...
July 21, 2010 at 3:31 am
Hi,
I got the answer, Only changes will come from principal to mirror. Trigger will not fire and also xp_cmdshell will not run on mirror database.
June 22, 2010 at 3:30 am
Hi All,
I find out the solution and root cause it.
Please find the solution as attachment.
June 15, 2010 at 1:19 am
I would like to know about you (Gail Shaw) , you profile, your experience and roll on http://www.sqlservercentrle.com
You always try to answer every question – Is it ok?
:w00t:
June 15, 2010 at 1:07 am
I am also facing the same issue.
I have SQL Server 2005 RTM and 10 databases are there. My Full Backup and Diff backup is working fine but in a database...
June 14, 2010 at 11:14 pm
Hi,
I have this on production server.
windows account policies are good if I'm going to create new login.
My problem is that I want to find out thoses login who should...
March 5, 2010 at 10:24 am
Hi;
Is no one to solve this thread.
February 4, 2010 at 12:26 am
Yaa !
There two System Views
1. sys.Server_Principals for Logins (saved in master database)
2. sys.Database_Principals for Users (saved in each user database)
January 22, 2010 at 12:51 am
Yaa you are right but my concern is that
Why Microsoft say that "Check the backup application log for detailed messages." What it mean? Where the details? Is Microsoft pointing...
January 20, 2010 at 4:22 am
January 20, 2010 at 12:29 am
Hi;
You can't but u can generate script of all objects per database and then export data.
otherwise no chance!
January 18, 2010 at 9:59 am
Viewing 15 posts - 61 through 75 (of 87 total)