Viewing 15 posts - 796 through 810 (of 925 total)
Duplicate post - please reply to:
http://www.sqlservercentral.com/Forums/Topic887195-392-1.aspx
March 22, 2010 at 2:11 am
Paul White NZ (3/19/2010)
BrainDonor (3/19/2010)
I just saw it as an interesting puzzle to solve as I've been playing with the LIKE command recently.
It's even more fun to solve with a...
March 19, 2010 at 4:20 am
Full-text search will be much more efficient for larger searches.
Definitely - I'd hate to wait for this code to complete against a large table. I just saw it as an...
March 19, 2010 at 4:07 am
That was interesting.
CREATE TABLE mytbl2
(
c1 sysname
);
GO
INSERT mytbl2 VALUES ('Discount is 10-15% off');
INSERT mytbl2 VALUES ('Discount is .10-.15 off');
INSERT mytbl2 VALUES ('total count is 100 of total employees');
INSERT mytbl2 VALUES ('100...
March 19, 2010 at 2:56 am
I've just experienced a problem with enabling Filestream for SS 2008 and I eventually removed the SS2000, 2005 and re-installed 2008 (I wasn't using the other versions anyway).
In my situation...
March 18, 2010 at 8:06 am
The Wall (3/9/2010)
March 9, 2010 at 4:21 am
It is correct that your grid shows nothing when a null value is entered - a null is an unknown value and can cause no end of fun if not...
March 9, 2010 at 4:12 am
Steve Jones - Editor (3/2/2010)
March 3, 2010 at 1:33 am
Why oddly?
It was a more polite way of saying 'obviously'...
BrainDonor
February 25, 2010 at 7:38 am
A little bit of testing shows that it takes the recovery model from the 'model' db (oddly enough). But of course, you don't know if anyone ever changed that...
BrainDonor.
February 25, 2010 at 7:05 am
Hmm, that's a interesting point. Is there any way of determing how a database was created?
Not that I'm aware of. However, if it was deliberately set to Full Recovery shouldn't...
February 25, 2010 at 5:00 am
If the database was switched from Simple to Full recovery and a backup has never been run it is possible that it isn't in Full recovery mode at all.
http://msdn.microsoft.com/en-us/library/ms178052.aspx
BrainDonor.
February 25, 2010 at 4:43 am
February 23, 2010 at 7:03 am
Can we have a look at that batch file? I assume your SQL is extracting directly from some tables and creating the export, but would like to see the code.
What...
February 19, 2010 at 3:17 am
erin.peachey (2/19/2010)
i am pretty new to SQL and what you can and can't do so please help me if you can.
I'm trying to take a value from a colomn, devide...
February 19, 2010 at 2:58 am
Viewing 15 posts - 796 through 810 (of 925 total)