Viewing 15 posts - 13,186 through 13,200 (of 26,486 total)
Is this also true of the examples in Books Online?
April 4, 2012 at 12:51 pm
vikingDBA (4/4/2012)
I look forward to seeing that. I do light to medium design work, mostly administration. My databases that I write are only used by small departments. ...
April 4, 2012 at 12:48 pm
vikingDBA (4/4/2012)
April 4, 2012 at 12:39 pm
Here is a comparison of Raid 1 + 0 vs Raid 0 + 1, http://decipherinfosys.wordpress.com/2008/01/15/difference-between-raid-01-vs-raid-10/%5B/url.
Given a choice for resiliency, I'll go with Raid 1 + 0.
April 4, 2012 at 12:31 pm
DBA_SQL (4/4/2012)
Oh ya, so now how can I get the deleted data, can you provide any script for this plz. Thank you
Really? Do you still have the original production...
April 4, 2012 at 12:26 pm
bullo (4/4/2012)
the plus second is to find overlapping/close classes. i have to make a drawing to came up with that logic....
April 4, 2012 at 12:21 pm
SQLKnowItAll (4/4/2012)
April 4, 2012 at 12:16 pm
aptlogix (4/4/2012)
Lynn Pettis (4/4/2012)
When one sees consecutive days, one is usually refering...
April 4, 2012 at 12:13 pm
One, for what time period is the report run? Past 7 days, since the beginning of the term, etc.
When one sees consecutive days, one is usually refering to more than...
April 4, 2012 at 11:18 am
Actually, I got this to work with no problem.
ALTER PROC dbo.sp_GetMaxID (@MaxID INT OUTPUT)
AS
BEGIN
SELECT @MaxID = max(ID) + 1 FROM tblFileWatchMaxID;
END
Use the same test code from...
April 4, 2012 at 10:40 am
TeraByteMe,
Looking at your original post, I think I know the problem. Modified the code to return max(id) + 1 and it doesn't use any dynamic sql.
ALTER PROC dbo.sp_GetMaxID (@MaxID...
April 4, 2012 at 10:25 am
In addition, you have no control over the code generated by Hibernate. If the code is inefficient, it stays that way. Going to stored procedures allows you to...
April 4, 2012 at 10:09 am
If you are receiving unicode data, I would be concerned about losing data. I have to agree with Jack and vote for storing the information in nvarchar columns and...
April 4, 2012 at 10:03 am
One last thing that may not have been covered in the article, expected results. Based on the sample data you provided, what should the results from the query be?
April 4, 2012 at 9:50 am
To be honest, I'd rather have an automated method of enforcing the UPPER CASE on SQL reserved words, even if it meant me hitting a sequence of control keys to...
April 4, 2012 at 9:44 am
Viewing 15 posts - 13,186 through 13,200 (of 26,486 total)