Viewing 15 posts - 346 through 360 (of 597 total)
Hi Chrissy:
Try:
EXEC sp_MSforeachtable "SELECT '?', COUNT(*) as 'number of rows' FROM ?"
August 3, 2004 at 7:35 am
I agree with you that the difference in behave of DTS designer vs. the wizard is odd. Maybe its fixed in SQL Server 2005. It may be worth checkm out...
July 28, 2004 at 9:35 am
For the DTS Designer try using DateTime String as the type of transformation as opposed to Copy Column. It should work. Using the DTS designer is more flexible but it...
July 27, 2004 at 11:21 am
Just some thoughts. You could force people to fill in a form with predefined info on it and call that the resume. The advantage is you are more likely to...
July 27, 2004 at 10:59 am
If you are taking transaction log backups as well you have the ability to restore to any point in the day. The full backups just make the restore process faster. ...
June 21, 2004 at 7:49 am
This article and this discussion are completely inappropriate for this site. Steve your insights into SQL Server and related technologies are appreciated but rememberances of individuals whether they be actors,...
June 8, 2004 at 10:39 am
Slow Running. Eiterh use SET SHOWPLAN_TEXT ON
GO
your query goes here
GO
SET SHOWPLAN_TEXT OFF
GO
or else use CTRL-L (Query\Display Estimated Execution Plan) from the QA menu. The difference is a text plan vs...
June 7, 2004 at 9:03 am
Slow Running : Check the estimated execution plan on each server for differences. (from Query analyzer)
Duty roster: Maintenance jobs should be run on all databases, that is Backups, Reindex tabales,...
June 7, 2004 at 8:02 am
Hey Adam, your defrag script sounds great. Have you considered uploadeding it for others to look at?
June 4, 2004 at 9:23 am
It would be better if your test database were on a completely separate machine. What if you need to restart the box for some reason or if you do something...
June 2, 2004 at 3:25 pm
Lily I noticed that you WHERE clause being:
Name LIKE '%parameter%'
will not use the index becasue of the % in front of the parameter. If you code Name LIKE 'parameter%' SQL...
June 1, 2004 at 10:04 am
If @EmployeeID is set to NULL this would return all rows in table. I'm not sure this is what is wanted ... or is it? I thought if @EmployeeID (or...
May 31, 2004 at 8:20 am
See http://www.sqlservercentral.com/scripts/contributions/632.asp for a sample of the function fnStringCompare . This function helps simplifie the code. Now if you want to pass more than region, that is pass lastname, city...
May 27, 2004 at 10:30 am
Are you running SQL Server 2000 SP3? What MDAC version is on the server? (Check the registry under HKLM\SOFTWARE\Microsoft\DataAccess)
Is this the same as the MDAC on the new XP wiorkstations?
May 25, 2004 at 2:16 pm
Viewing 15 posts - 346 through 360 (of 597 total)