Viewing 15 posts - 1 through 15 (of 69 total)
What I meant was that if I am using the management studio to connect to multiple databases, how can I find that out from the explorer window.
January 13, 2011 at 7:26 pm
cool. thx guys.
November 17, 2007 at 11:39 am
Don't think so. I looked at it. It doesn't do the job. I have asked them if they have something similar to Dependency Tracker for Visual Studio.
November 16, 2007 at 1:18 pm
Works great. Thx.
BTW, Is something similar available for Visual Studio? Say I want to modify a DLL. But before I do that, I want to find out where...
November 16, 2007 at 12:17 pm
I have SS 2005.
November 16, 2007 at 11:10 am
Thx. It works for a single key. But not for a composite key. If I have City and Zip in Client and in State, and I try:
SELECT *
FROM Client
WHERE StateCode...
June 21, 2007 at 8:06 am
I am trying to create a table and copy data from a different database to tempdb.
use tempdb
CREATE TABLE old_client_table
AS (SELECT * FROM WarmSpringPRD.person)
What am I doing wrong?
June 20, 2007 at 11:29 am
I've created a full bkp that backs up to a file on the disk. The file then gets picked by the daily backup job. If I want to automate the...
January 24, 2007 at 6:55 pm
but what if i am not using any statements and using the import/export wizard?
December 20, 2005 at 8:49 am
When you say, all services should be stopped, SQL Switch should do it right? Can you please clarify what you mean by blowing away the tree?
November 28, 2005 at 9:55 pm
This worked:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER PROCEDURE [dbo].[lu_Ethnicity_Insert_One]
(
@nvcEthnicity nvarchar(30),
@nvcASCU nvarchar(256)
)
AS
SET NOCOUNT OFF;
DECLARE @intDspSeqNbr int
SET @intDspSeqNbr = (select (max(intDspSeqNbr) + 100) from lu_Ethnicity)
SELECT @intDspSeqNbr
INSERT INTO lu_Ethnicity(nvcEthnicity, intDspSeqNbr, dtASCD, nvcASCU)
VALUES(@nvcEthnicity, @intDspSeqNbr, getdate(),...
November 14, 2005 at 8:05 pm
This is what I followed and it worked:
http://blogs.msdn.com/astebner/archive/2005/09/13/465401.aspx
October 31, 2005 at 10:56 am
Viewing 15 posts - 1 through 15 (of 69 total)