Viewing 15 posts - 121 through 135 (of 282 total)
Use some common sense, and post the vbscript if you actually expect any response to this issue. And, if I sound like I am being a a$$hole, it was intended...
March 20, 2006 at 9:44 am
Make sure you read the entry from olavho in the above link.
March 9, 2006 at 11:50 am
Don't install it on "too many people"'s machines.
February 17, 2006 at 12:33 pm
DBCC MEMORYSTATUS is the only helpful thing I found for this.
February 13, 2006 at 4:18 pm
I downloaded the trial version. Used it for about 5 minutes, before I realized it was worthless due to the lack of quality. Without going into a ton of details,...
January 18, 2006 at 4:14 pm
Have you checked out RedGate SQLCompare software? It compares databases, and generates the approiate scripts to "sync" the databases.
January 13, 2006 at 10:51 am
We actually have log shipping in place for the failover location. The complicated part of this is, that LocationB also serves as a "live" datacenter in parallel with LocationA. This...
January 3, 2006 at 10:56 am
Well, obviously if locationB is a failover for locationA, then the data in each location would need to be the same. This is "all" data, user-entered, and otherwise.
Now, to address...
January 3, 2006 at 10:38 am
Stored Procedures will run fractionally slower if they start with a prefix of sp_ This is because SQL Server will look for a system stored proc first.
December 19, 2005 at 1:24 pm
Ideally you do not want to create stored procedures in the master database. I would recommend creating a "admin" database and creating the proc there. Also, you never want to...
December 19, 2005 at 1:22 pm
You can fully qualify the name of the table in the insert statement. For example:
You got: Insert into dbo.tablename
Change it to: Insert into databasename.dbo.tablename
December 14, 2005 at 5:09 pm
rather than.. exec sp_changeobjectowner 'view_name', 'dbo'
try... exec sp_changeobjectowner 'user.view_name', 'dbo'
December 14, 2005 at 1:52 pm
I would be $$ that someone restarted it and is not telling you. SQL does not restart itself
November 28, 2005 at 12:46 pm
Viewing 15 posts - 121 through 135 (of 282 total)