Viewing 15 posts - 256 through 270 (of 566 total)
You can utilize the schema changes history report available in SSMS (management studio). Within the SSMS UI, right-click the database and/or server name and select the reports option.
February 19, 2008 at 9:57 am
You can obtain the runtime and the designer components via the feature pack.
February 19, 2008 at 9:55 am
NP 🙂 Good luck, be sure to post questions if you run into any trouble 😀
February 19, 2008 at 8:15 am
Never heard of it myself 🙂 You can always download trial software from MS as an alternative.
February 19, 2008 at 7:54 am
Just FYI - here is a quote from a collegue of mine; MS SQL TS for FL -
"VERITAS VCS is NOT supported by Microsoft. Is you have issues; we...
February 15, 2008 at 8:57 am
I'm working for Symantec 🙂 So we are being pushed to "eat our own dog food" if you know what I mean 🙂 My experience has been w/ MSCS exclusively.
February 15, 2008 at 7:21 am
You might even consider uninstalling the default instance altogether -
February 14, 2008 at 8:59 am
From the management studio, right-click the database and/or server in question and select the reports option, and the Schema Changes History report. Here is the T-SQL if you would like...
February 14, 2008 at 8:54 am
As George pointed out earlier - either or.
February 13, 2008 at 1:19 pm
I've been using snapshots in order to provide a static read-only copy of the database for reporting (SSRS/SSAS) w/ great success. Take a look here -
http://www.sqlservercentral.com/Forums/Topic452904-146-1.aspx
February 13, 2008 at 12:56 pm
How about using OPENROWSET?
OPENROWSET ( 'provider_name'
, { 'datasource' ; 'user_id' ; 'password'
| 'provider_string' }
...
February 13, 2008 at 10:19 am
🙂
You need to destroy the object afterwards - sp_OADestroy - i.e.
EXEC @resultcode = sp_OADestroy @ids
if @resultcode = 0
Print 'destroyed object'
February 13, 2008 at 8:58 am
You can use an execute SQL task within a ForEach Loop sequence container to populate a couple of int32 variables representing the count and the RowID. SQLIS has a good...
February 13, 2008 at 8:48 am
Are you using any SQLDMO ? i.e. sp_OACreate
The SQLDMO connections aren't being destroyed. What build are you running?
February 13, 2008 at 8:32 am
Check out TaskManager and look for the PID or Start -> Run -> Services.msc
You should be able to identify the service and follow up w/ your SysAdmin. Both of these...
February 13, 2008 at 8:02 am
Viewing 15 posts - 256 through 270 (of 566 total)