Viewing 15 posts - 796 through 810 (of 961 total)
Yes it is possible , depends on what you want to track :-
Database objects can be tracked by using a server tigger for DDL keywords such as create , drop...
June 27, 2011 at 3:27 am
where do you go to find best practice advice?
Peers , BOL , anywhere i can . Do I implement them ? not always , as you mentioned there is no...
June 27, 2011 at 3:21 am
select * from live table
union
select * from history table
would also have worked
Union all will give back repeated data, union will not.
June 27, 2011 at 3:09 am
Automatic fail over is possible only with Clustering and database mirroring , replication will not meet any kind of DR requirement. Replication is only meant to scale out a...
June 27, 2011 at 3:06 am
Could you please post the execution plan for the above query
June 27, 2011 at 3:02 am
Do you know which executable in particular contained the reference .
I know for a fact that Analysis services has bug where a data view can be modified but the...
June 27, 2011 at 2:57 am
try going thru this lms
http://www.sqlservercentral.com/Forums/Topic159966-54-1.aspx
June 27, 2011 at 2:54 am
Grant update = edit permission , if you need to add new rows use grant insert
domain is the network name , say for example your company is amazon and...
June 27, 2011 at 1:31 am
CREATE LOGIN [Domain\Username] FROM WINDOWS WITH DEFAULT_DATABASE=[SomeDB], DEFAULT_LANGUAGE=[us_english]
GO
USE [SomeDB]
GO
CREATE USER [SomeUSer] FOR LOGIN [Domain\Username] WITH DEFAULT_SCHEMA=[dbo]
GO
GRANT SELECT ON [OBJECT] TO SOMEUSER
GRANT UPDATE ON [OBJECT] TO SOMEUSER
Perform the above steps then...
June 27, 2011 at 12:46 am
Do you have ANSI padding on ?
June 26, 2011 at 1:09 pm
Gianluca Sartori (6/24/2011)
GilaMonster (6/24/2011)
Brain overfull. Firehose-style class. So glad I have a short vacation after this.
So, this means you're human, after all. 🙂
Enjoy your vacation, Gail: I'm sure you deserve...
June 25, 2011 at 1:20 pm
Why not let SQL manage the memory on its own, are you using a 64 bit implementation ?
At worst you might need enable the 3 gb switch in boot.ini and...
June 25, 2011 at 1:12 pm
worktables use the collation as specified for the database in which the operation is being performed. So I dont think you would see any additional performance impact other than what...
June 25, 2011 at 1:06 pm
are you inserting into multiple linked servers or do you have just one ?
June 24, 2011 at 2:38 pm
selects would show up if the time stamp of last index seek or scan are closer to today
June 24, 2011 at 1:11 pm
Viewing 15 posts - 796 through 810 (of 961 total)