Viewing 7 posts - 1 through 7 (of 7 total)
Did you isql from your server or from your desktop? If from your desktop, then try it from the server.
April 11, 2005 at 5:17 pm
I ran across this last week when tuning a query. The query plan shows it as a Table Scan for a Table UDF.
-Paul
April 11, 2005 at 5:13 pm
Create a DTS package that has one task which is the Copy SQL Server objects task. After you fill in the Source and Destination tabs, unselect the create destination objects...
April 11, 2005 at 4:55 pm
Great article!
I liked the part about restores. So true. You can back up religiously, but if you can't restore, what's the point.
In my experience a DBAs hidden value is that they...
March 30, 2005 at 9:02 am
Here's a real easy way to get schema of view resultset
select top 0 * into TempTableName from ViewName
Then just do normal scripting of object and then drop TempTableName.
-Paul
August 25, 2004 at 12:27 pm
Try this:
CREATE PROC dbo.getUUIDfromDB
@objID int,
@myUUID varchar(255) OUTPUT
AS
DECLARE @sql nvarchar(1000)
DECLARE @ParmDef nvarchar(500)
SET @ParmDef = N'@Parm_objID int, @Parm_myVal varchar(255) OUT'
SET @sql = N'SELECT @Parm_myVal...
August 18, 2004 at 8:27 am
I agree that there is probably a design flaw/oversight if there are that many NULL's.
However, if a column in a table has values that are REALLY lopsided, like...
August 27, 2003 at 8:05 am
Viewing 7 posts - 1 through 7 (of 7 total)