Viewing 15 posts - 58,876 through 58,890 (of 58,997 total)
Unless you have TEXT or BINARY fields, you're also limited to (if I remember correctly) only 8096 bytes per row no matter how many VARCHAR(8000) fields you have. So, my...
August 16, 2004 at 11:06 pm
Henk,
The problem with CLUSTERED indexes is that they live in the data and should just not be used for transactional tables. Inserting into the "middle" of a 4 million record...
August 16, 2004 at 10:59 pm
I'll probably get a huge number of arguments from this but you're really opening yourself up to a world of hurt if you move into the TEXT datatype. They're difficult...
August 16, 2004 at 10:46 pm
Colin,
First, if you are not using the Enterprise Edition, adding memory over 2 Gig is fruitless because the Standard Edition is limited.
If this is something like a daily, weekly or...
August 16, 2004 at 10:39 pm
Oh crud... I just checked some of the switches for the scptsfr.exe routine I told you about and I don't think it'll work because the login is always "SA". If...
August 16, 2004 at 10:11 pm
There's a nasty VB program at C:\Program Files\Microsoft SQL Server\80\Tools\DevTools\Samples\sqldmo\vb\SQLScripts on the server. If you can't get to that, there's an .EXE called "scptxfr.exe"...
August 16, 2004 at 10:04 pm
Stefan,
This is similar to the procedure that I use although my inputs are a little different (easy for you to modify, if you want). Instead of inputing a row number,...
August 16, 2004 at 9:40 pm
Carl, these are similar to some of the others but thought I'd post it anyway
------ Finds the LAST day of NEXT month (Time=23:59:59.997) (resolution is 3 ms)
SELECT DATEADD(ms,-3,DATEADD(mm,DATEDIFF(mm,0,@Date)+2,0))
...
August 7, 2004 at 10:00 am
Just curious... are any of the joined "tables" really views? That's what happened to me at work... just did a SELECT * to see what I got back from a...
August 7, 2004 at 9:44 am
NVarchar uses two bytes per character. There is no reason to use it unless there is something "language specific" or the system requires it.
July 29, 2004 at 12:55 am
Using EXEC (@SQL1+@SQL2...@SQL4), have been able to do up to 32k. Target of exec has to be in ( ). Didn't try it but was once told the limit was...
July 27, 2004 at 10:26 pm
You can also create roles and assign individuals to roles. That way, if you need to change the permissions for a whole group of people, you just change the permissions...
July 24, 2004 at 7:59 am
The systax of the GRANT command should be as follows:
GRANT permissiontype ON sqlobject TO grouporrole
See "Books on Line" under "GRANT, GRANT (described)" for a complete list...
July 22, 2004 at 8:33 pm
WHEN ABS(DATEDIFF(ss, x, y) ) <= 3
July 21, 2004 at 8:49 pm
I believe you are looking for the GRANT command. See "Books on Line" for details.
July 21, 2004 at 8:34 pm
Viewing 15 posts - 58,876 through 58,890 (of 58,997 total)
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy