Viewing 15 posts - 1,876 through 1,890 (of 1,988 total)
I think it goes back to before backup with truncate only was depcrecated. Switching to simple then shrinking the log file then switching back has pretty much the same...
November 10, 2014 at 11:55 am
How often are you running full/diff backups compared to transaction log backups? That would determine how long you need to hang onto your old tlog backups before you can...
November 10, 2014 at 10:22 am
Robert Mark (10/30/2014)
October 30, 2014 at 8:37 am
Robert Mark (10/30/2014)
1) If you're application coding language requires checking for null values when you read in data from the database,...
October 30, 2014 at 8:03 am
radman_bobbin (10/30/2014)
The approach I was taught (and still follow) is that if NULL "means something" in relation...
October 30, 2014 at 7:56 am
It looks like your join criteria might be too loose what's happening is that if you already have say two records in your archive table with the same student id...
October 29, 2014 at 2:38 pm
Not that I know of, but if you're cool with losing data from the result set you can just pick a top X row count you know won't exceed the...
October 29, 2014 at 1:02 pm
Couple questions, how wide is the table? And how long does just the select take(no insert)?
October 28, 2014 at 8:25 am
Do you want to limit the actual number of characters in the database or just the number of characters that get displayed?
October 27, 2014 at 8:13 am
ramana3327 (10/23/2014)
We are not optimizing that report. So we need to have other source
Just out of curiousity is the cost of getting all this set up hardware, licenses, dev time...
October 23, 2014 at 12:14 pm
Nice question, it's not trivia and it doesn't rely on intentionally misleading syntax.
October 23, 2014 at 11:15 am
Devs have told me they cant change this and its my problem.
Start telling anyone that complains about the problem that it's working as intended and they need to be...
October 16, 2014 at 2:55 pm
ISNUMERIC doesn't necessarily mean it will convert successfully to a decimal.
SELECT ISNUMERIC('$123.5')
SELECT CAST('$123.5' as DECIMAL(19,2))
October 14, 2014 at 11:09 am
Do you have any kind of identity column or something that would indicate the order that rows were added in? At least then you would have some kind of...
October 14, 2014 at 9:12 am
Your application is opening a connection and never closing it, that could be intentional, they expect they'll use the connection again at some point, or just sloppy coding, they're not...
October 14, 2014 at 8:24 am
Viewing 15 posts - 1,876 through 1,890 (of 1,988 total)