Viewing 15 posts - 17,911 through 17,925 (of 18,926 total)
As I've been asked for the set based solution here it comes :
--I use this table for many other string operations as well
GO
CREATE TABLE [Numbers] (
[PkNumber] [int] IDENTITY (1,...
May 3, 2005 at 11:34 am
Maybe you could export all the dts to vbs, then flag which dts use the sa account then manually change them on the server... I hope that there's a better...
May 3, 2005 at 9:16 am
An restarting enterprise manager??
Is there anything in the server's logs?
May 3, 2005 at 9:14 am
Update Perm set Perm.RegDate = Temp.RegDate from dbo.PermTable Perm inner join tempTable Temp on Perm.id = Temp.id
Make sure you have a backup of the table before you do the update......
May 3, 2005 at 9:12 am
Or maybe just refreshing the db list...
May 3, 2005 at 8:46 am
You can't include Forms!myform!myvalue in the proc code.
You must create a new form
set the data source of the form to dbo.ProcedureName
then in input parameters you must set it to Forms!myform!myvalue
May 3, 2005 at 8:44 am
Select case left(colname, 1) WHEN '0' THEN '20' ELSE '19' END + Colname as NewDateCol.
May 3, 2005 at 8:41 am
There probabely is a better way to do it but have you considered appending 19 or 20 to the begenning of the field so that sql server can have...
May 3, 2005 at 7:58 am
Here's the article... maybe I missed something :
http://www.sqlservercentral.com/columnists/bkelley/procedurecache.asp
and another one in the same line :
http://www.sqlservercentral.com/columnists/mmetcalf/hitsandmisses.asp
May 3, 2005 at 6:42 am
I've read something interesting here on this site. There's a 3rd way to generate cache misses. You can either have a sp name sp_MyProc (cache miss because not...
May 3, 2005 at 6:31 am
Viewing 15 posts - 17,911 through 17,925 (of 18,926 total)