Viewing 15 posts - 1,891 through 1,905 (of 2,900 total)
sateesh.kamalakar (5/27/2009)
SET ANSI_NULLS ONGO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[vwOppValue]
with SCHEMABINDING
AS
SELECT
tblLeadMaster.LeadName
,tblLeadMaster.LeadId
,tblEmployee.EmpName AS LeadOwnerName
,tblLeadMaster.LeadOwnerID
I was just going through figuring that out today also ! ...
May 27, 2009 at 2:22 pm
When you use the Import/Export wizard, you have the option to append or replace the data ("edit mappings"). You have to go into each table to set it which...
May 27, 2009 at 8:39 am
fpereiras (5/27/2009)
homebrew01 (5/27/2009)
fpereiras (5/26/2009)
Hi use sql authentication mode and personate user. The users are no trusted Unix and Windows.
Not quite sure what you mean.
Windows authentication works if I remote onto...
May 27, 2009 at 8:22 am
fpereiras (5/26/2009)
Hi use sql authentication mode and personate user. The users are no trusted Unix and Windows.
Not quite sure what you mean.
Windows authentication works if I remote onto 1 server,...
May 27, 2009 at 6:06 am
No I didn't test it in dev. It was a bit of a rush. Took a chance and added the column and updated it later with data. Got lucky and...
May 26, 2009 at 12:39 pm
Is your boss aware of the current problem doing the restore ? What does he say about it ?
Last I knew, you could not use Veritas to restore to...
May 19, 2009 at 9:35 am
And if you want a quick view of all your database sizes alphabetically:
IF OBJECT_ID('tempdb..#t') IS NOT NULL
DROP TABLE #dbsize
CREATE TABLE #dbsize
(DB_Name sysname
,size int)
--now load the temp table
INSERT INTO #dbsize
exec...
May 18, 2009 at 2:19 pm
Jeffrey Williams (4/27/2009)
May 15, 2009 at 12:42 pm
Use the GUI but don't save the changes. then generate the script to a new query window and it will build your T-SQL script for you.
May 14, 2009 at 8:45 am
I found this in my old SQL 2000 scripts and it will work in 2005. You could put the 2 sets of results to work tables and then compare them.
select...
May 13, 2009 at 7:18 pm
Would a transaction log backup be advisable now ? Then you can apply it (them) to your old full backup.
May 12, 2009 at 9:15 am
Thanks .... That looks like it should work, but I get "Argument data type int is invalid for argument 1 of substring function."
Maybe it doesn't like the columns being varchar...
May 6, 2009 at 12:28 pm
On the first day. You need disaster recovery in place for your developement area.
May 6, 2009 at 6:07 am
Viewing 15 posts - 1,891 through 1,905 (of 2,900 total)