Viewing 15 posts - 211 through 225 (of 240 total)
For a 20 Gig database this is more than enough, I would start thinking on third party tools only for a very large environment.
Curious -- how large before you'd consider...
April 13, 2010 at 11:13 am
WayneS (4/13/2010)
rename this table.
...
IMO, quite a lot...
April 13, 2010 at 11:02 am
I think Seth meant to say,
Select MAX(DATALENGTH(yourtextfield)) from yourtablename
The LEN function won't work on TEXT type fields. You need to use DATALENGTH.
April 13, 2010 at 10:40 am
How about a Windows command prompt / batch file / scheduler solution?
In Windows 2003/Vista and later, there is the FORFILES command that you can use to cycle through a group...
April 12, 2010 at 10:29 am
RBarryYoung (4/7/2010)
And yep, this is just one of the many reasons why we here at SSC are in such high demand for dates, parties and other social events. 😀
You...
April 7, 2010 at 4:26 pm
Paul White NZ (4/7/2010)
DECLARE @test-2
TABLE (
ID ...
April 7, 2010 at 4:21 pm
Questions #1, #2 and #4 are all outlined in BooksOnline and numerous blogs and articles.
Questions #3 and #5 are subjects for all kinds for interesting discussion. No hard and...
April 7, 2010 at 3:25 pm
Database partitioning is only available on the Enterprise version of SQL Server -- is that what you're running?
April 5, 2010 at 10:59 am
I've heard this before so as far as a faster import. So just to clarify, dropping and recreating the index is a quicker process than reindexing the index that's...
April 5, 2010 at 10:22 am
You can't use native MS SQL Server tools to do selective backups - you back up the whole database or nothing. (OK, you can back up just the transaction logs,...
April 2, 2010 at 9:48 am
[Ignore this post -- how does one delete an accidental double post?]
March 30, 2010 at 10:07 am
The GUID may not help, except to insure that you have a unique ID for each record.
The Timestamp field is what you'd need.
Sounds like you're on the right track. Keep...
March 30, 2010 at 10:07 am
Great idea, Bhuvnesh, but that won't work when there are no Roman numerals at the end.
JOHN JONES will end up as John JONES.
But you could use your idea to strip...
March 30, 2010 at 9:59 am
I'd agree with Andrew. Getting consistent data into an ERP system can be a nightmare if you don't understand all the rules and their nuances.
What ERP system is it, if...
March 30, 2010 at 9:54 am
Oops, maybe I missed the point? You say you want to add the new criteria to the WHERE clause. Like this?
WHERE
(cc.ESPNPersonnelAssigned IS NOT NULL)
AND (ISNULL(cc.expDate, GETDATE()) >= GETDATE())
AND (ISNULL(@costCenters,'')='' or...
March 30, 2010 at 9:51 am
Viewing 15 posts - 211 through 225 (of 240 total)