Viewing 15 posts - 6,676 through 6,690 (of 7,466 total)
I/O wize perfer the 6*.... but also provide the chanels ! or you may encounter chanel-queues.
February 25, 2005 at 3:24 am
February 25, 2005 at 3:21 am
Nice lock-hints
what's
set @mothercared = (select top 1 pin from ...)
February 24, 2005 at 6:09 am
did you resinc the users ?
check sp_change_users_login in BOL !
this is what I use after restore :
Be carefull because it users systemobjects which way in not preferable !!
February 24, 2005 at 5:51 am
That is not what triggers are ment to do !
You can return the latest identity-value using SCOPE_IDENTITY ! Check BOL.
February 24, 2005 at 5:43 am
NET stop yourservice
NET start yourservice
will also you the trick if you're authorised.
p.s. even with msde you can make regular sql-backups,
so there...
February 24, 2005 at 5:35 am
select id
, case when isnull(ltrim(record1),'') = '' then 0 else 1 end
+ case when isnull(ltrim(record2),'') = '' then 0 else 1 end
+ case when isnull(ltrim(record3),'') = '' then...
February 21, 2005 at 2:21 am
If you are doing an index-review ...
run a trace that captures all sql and sp activity during a typical timeframe and have that analyzed by ITW, leaving it the option...
February 21, 2005 at 1:24 am
how about querying sysprotects ?
the errormessage is pointing to authorities granted by the user you want to be dropped.
select user_name(grantor), *
from sysprotects (nolock)
where grantor = USER_ID ( 'youruser' )
February 21, 2005 at 12:42 am
use SCOPE_IDENTITY( )
According to books online :
February 21, 2005 at 12:25 am
Here is a nice article regarding SQL Server UPDATE STATISTICS Tips :
http://www.sql-server-performance.com/statistics.asp
Maybe it helps in solving this problem.
February 18, 2005 at 3:14 am
If your sql-column is defined nullable (. gets null), there should be no problem with SAS.
This is what we use to bulkload data using SAS.
%let sqlDWH =
provider="sqloledb"
properties=('data source'='mysqlserver' 'Initial Catalog'='mydb'...
February 18, 2005 at 2:41 am
Check Autostats db-setting !
sql7 and sql2k pre sp3 exec sp_dboption N'yourdb', N'auto create statistics', N'true' --
sql2k sp3 : ALTER DATABASE yourdb SET AUTO_CREATE_STATISTICS ON...
February 18, 2005 at 2:35 am
msdb is a systemdb. I don't know if #-version restore is supported
Personaly I would script the sql7 jobs, alerts, .... and then implement...
February 17, 2005 at 7:45 am
don't add these keys if your sqlserver works !
search for a "TcpPort"-key. It has to be there and then you know you'll adjust...
February 16, 2005 at 11:59 pm
Viewing 15 posts - 6,676 through 6,690 (of 7,466 total)