Viewing 15 posts - 2,851 through 2,865 (of 5,843 total)
A picture is worth a thousand words. So I like to use a good modeling program (Embarcadero's ERStudio is my favorite by a long shot), which not only offers...
July 18, 2012 at 7:52 am
jfriedl (7/16/2012)
July 17, 2012 at 10:57 am
get sp_whoisactive from SQLBlog.com (v11.11 is latest last I heard) and use that to get all KINDS of important information about executions on your sql server
July 17, 2012 at 10:53 am
Smash125 (7/15/2012)
Please find the function as below.
CREATE FUNCTION fnContactFullName(@ID INT)
RETURNS NVARCHAR(100)
AS
BEGIN
DECLARE...
July 16, 2012 at 8:49 am
1) If you don't need true ENCRYPTION, then using a hash will be much better since you can still get seeks against a NC index on the column. This...
July 16, 2012 at 8:45 am
chewychewy (7/15/2012)
Let's say my server has 16 GB physical ram. I have set the sql server max memory setting to 4 GB to cap it.
If my sql server doesn't...
July 16, 2012 at 8:40 am
Didn't fully read all posts here, but since this is a SQL 2008 forum, I would think MERGE would be the obvious solution that completely eliminates all concurrency/locking issues that...
July 13, 2012 at 10:58 am
You have views AND a table valued function in play here. There is no telling how complex and messed up the actual query is given those two things. ...
July 11, 2012 at 8:54 am
1) As Jack pointed out, you REALLY need to do SET BASED processing in your triggers
2) I would absolutely have THREE triggers for this stuff - one each for INSERT/UPDATE/DELETE....
July 11, 2012 at 8:51 am
SQLKnowItAll (7/10/2012)
TheSQLGuru (7/10/2012)
SQLKnowItAll (7/10/2012)
TheSQLGuru (7/10/2012)
GilaMonster (7/9/2012)
Couple steps back... Why are you partitioning? What's the purpose and expected gain?Spot-on Gail, as always.
See this post: http://www.sqlservercentral.com/Forums/Topic1301588-1550-1.aspx#bm1302471
Well, I might have made an...
July 10, 2012 at 3:20 pm
SQLKnowItAll (7/10/2012)
TheSQLGuru (7/10/2012)
GilaMonster (7/9/2012)
Couple steps back... Why are you partitioning? What's the purpose and expected gain?Spot-on Gail, as always.
See this post: http://www.sqlservercentral.com/Forums/Topic1301588-1550-1.aspx#bm1302471
Well, I might have made an @$$ out...
July 10, 2012 at 2:36 pm
GilaMonster (7/9/2012)
Couple steps back... Why are you partitioning? What's the purpose and expected gain?
Spot-on Gail, as always.
See this post: http://www.sqlservercentral.com/Forums/Topic1301588-1550-1.aspx#bm1302471
July 10, 2012 at 9:41 am
rocky_498 (7/8/2012)
Thanks for your reply and advice, if you can show me right path/ articles/tutorials that you can think is good learning for me that would be great, if...
July 10, 2012 at 9:37 am
anthony.green (7/9/2012)
This will do the trick
DECLARE @d DATETIME = '1984-08-13 00:00:00.000'
SELECT CONVERT(NVARCHAR(10),@d,120)
Why are you converting to Nvarchar?? 2 bytes of storage for nothing there, isn't it?
July 10, 2012 at 9:33 am
I will guess that you are on VERY old hardware given your OS and SQL Server version. The best thing you can do in that case is to move...
July 10, 2012 at 9:31 am
Viewing 15 posts - 2,851 through 2,865 (of 5,843 total)