Viewing 15 posts - 3,511 through 3,525 (of 6,216 total)
Agree with Brian. You can do that change in a loop too, but its a lot more work. Way more than its worth in my opinion.
Andy
August 9, 2002 at 10:05 am
Typically happens with sql logins. They will have one id on the original server, a different id or not exist on the new server. Set up your logins first, then...
August 9, 2002 at 10:03 am
Did you find an advantage to textcopy over using an ADO stream?
Andy
August 9, 2002 at 8:38 am
It's normal and expected for SQL to gradually acquire all the RAM alloted/available to it. It uses this to cache data and query plans. Stopping the service means it has...
August 9, 2002 at 8:16 am
If you just need a marker file, you can do xp_cmdshell 'dir > flag.txt'.
Andy
August 9, 2002 at 8:14 am
Triggers are set based, they fire once per transaction, not once per row, so anytime you declare variables to work with you should plan on using a cursor. In this...
August 9, 2002 at 8:13 am
August 9, 2002 at 8:13 am
Need some type of loop. You can use VB and do something like this:
'open connection goes here
set rs=cn.execute("Select * from sysobjects where .....")
do until rs.eof
cn.execute "alter table "...
August 9, 2002 at 8:10 am
Totally agree that the scale issue is worth discussing. Not sure that you'll see the affects of not enough ram in buffer cache, it tends to stay in high 90's...
August 9, 2002 at 4:35 am
Looks like a different scale.
Im curious, why would you want a perf alert on this? I agree its worth checking, but not real time.
Andy
August 9, 2002 at 3:59 am
If you're just looking for blocking I find sp_who convenient. I'll probably get some argument on this, but I think generally when you're using sp_lock you're in the weeds. Typically...
August 9, 2002 at 3:50 am
Log shipping is only supported in Enterprise, but the scripts to do it where included in the SQL7 section of the BORK (BackOffice Resource Kit). It's fairly mechanical - do...
August 9, 2002 at 3:40 am
Not getting the same result:
Device activation error. The physical file name 'C:\Program Files\Microsoft SQL Server\MSSQL$ONE\data\helloworld_Log.LDF' may be incorrect.
New log file 'c:\program files\microsoft sql server\mssql$one\data\helloworld_log.LDF' was created.
Is the file actually getting...
August 9, 2002 at 3:38 am
Sure. Certain amount of clean up has to be done, depending on the type type of index. Not sure why you'd be dropping your pkey very often?
Andy
August 9, 2002 at 3:32 am
I don't know of any limitation in the driver, though there may be. In earlier iterations of ADO/DAO it was necessary to "chunk" the data, ADO streams do away with...
August 9, 2002 at 3:26 am
Viewing 15 posts - 3,511 through 3,525 (of 6,216 total)