Viewing 15 posts - 5,851 through 5,865 (of 9,643 total)
Okay this is similar to Purushotham's suggestion:
DECLARE @table TABLE (id INT IDENTITY(1,1), EnteredTime DATETIME)
DECLARE @StartDate DATETIME
-- doing this so I have a consistent date with which to work
SET @StartDate...
February 25, 2009 at 7:28 am
Have you queried sys.servers for PC001\PC001? With and without the brackets. If you set up the linked server using the Microsoft OLE DB PRovider for SQL Server you...
February 25, 2009 at 6:50 am
In SQL Server 2005/2008 you can sign a Stored Procedure with a certificate which allows you to grant access to the Certificate User. Here is a link to the...
February 25, 2009 at 6:47 am
You could create a trace that filters on that login name.
Is this a Windows login or a SQL Server login? If it is a Windows Login you need...
February 25, 2009 at 6:39 am
Your welcome.
The sort on your Oracle source is irrelevant since that is putting the table in a SQL Server table for staging. You need to have an order by...
February 25, 2009 at 5:20 am
Jeff,
I didn't take any offense at what you said, I took it as a compliment, and my post was supposed to be a compliment as well. Just kind of...
February 24, 2009 at 9:04 pm
Ah yes, this is one of those tools I need to remember. I don't have to deal with updates like this that often so I always forget about this...
February 24, 2009 at 8:27 pm
Bob Hovious (2/24/2009)
ThreadHeads?
Steve,
I think you just got a new level for SSC, ThreadHead!:D If you have 100 posts on The Thread you become a ThreadHead!
February 24, 2009 at 7:42 pm
Bob,
Always willing to share my opinion, even when it probably stinks.
See, I think that it is necessary to consider others abilities whenever coding something. I want the...
February 24, 2009 at 3:05 pm
I don't know how you would get around that situation.
February 24, 2009 at 2:16 pm
Jack Corbett (2/24/2009)
February 24, 2009 at 2:15 pm
I don't see anything out of the ordinary that would cause only 1 row to be returned. I think the only reason it would return 1 row would be...
February 24, 2009 at 2:09 pm
I'm a fan of letting the UI or business layer handle formatting the data and let SQL Server return the data. I know I can do a lot of...
February 24, 2009 at 1:54 pm
I'd start with something like this:
IF NOT EXISTS(SELECT 1 FROM dbo.tbl_Tracking_WebPages WHERE Page_Name = @Page_Name)
BEGIN ...
February 24, 2009 at 9:18 am
I feel your pain. Especially when it comes to DB2. I don't think I am going to be any specific help, but I would suggest that set the...
February 24, 2009 at 8:48 am
Viewing 15 posts - 5,851 through 5,865 (of 9,643 total)