Viewing 15 posts - 8,341 through 8,355 (of 9,641 total)
Loner (7/18/2008)
I also would have to agree with the premise behind this quote. Folks in IT tend to be logical folks who see a right way and wrong way...
July 18, 2008 at 2:45 pm
hengert (7/18/2008)
Thanks.What is LOB? Sorry 🙁
It is BOL not LOB and stands for Books On Line.
How come thi statemetent does not work:
SELECT @StringColumn = (SELECT COL_NAME(OBJECT_ID(@TableName), @Counter) AS 'Column Name')
IF...
July 18, 2008 at 2:36 pm
Carla Wilson (7/18/2008)
July 18, 2008 at 12:40 pm
Since I have not used Access to modify a SQL table in a long time I'm not sure where it would be, but my gut tells me you should see...
July 18, 2008 at 9:39 am
sho (7/18/2008)
Jack, do you have an example of the outer join problem?
This is not the best example, but does show a difference. Run this in AdventureWorks:
[font="Courier New"]SELECT
M.Title AS ManagerTitle,
E.Title...
July 18, 2008 at 9:09 am
Steve Jones - Editor (7/18/2008)
I think Grant and Jeff must be related to Dwight Shroot. Sorry you guys lost your privileges to bring nunchakus and stars into the office.
So would...
July 18, 2008 at 8:58 am
You can add an activity directory group. You need to use the format domain\group (Domain\DB Admins) or use the Browse button and navigate to the group.
July 18, 2008 at 8:54 am
Kaushal (7/18/2008)
July 18, 2008 at 8:43 am
What is the recovery model of the database? If SIMPLE I would batch my deletes and issue a CHECKPOINT after each one which will cause the log to truncate,...
July 18, 2008 at 8:32 am
If I understand correctly DBAdmins is a windows group and it sounds like this group has not been granted access to the SQL Server. By default local administrators have...
July 18, 2008 at 8:22 am
Use the function SUSER_NAME() which will return domain\user_name for windows authentication and user_name for SQL Authentication. If you are using a generic sql login to connect to the database...
July 18, 2008 at 8:17 am
You could grant execute permissions on the dbo schema or create a role that has execute permissions on the functions needed.
July 18, 2008 at 8:09 am
Duplicate post. Original here
Please do not cross post.
July 18, 2008 at 8:07 am
In addition to what Steve said, I also find it easier to read because join criteria is separated from any filtering criteria. Also when using Outer joins placement of...
July 18, 2008 at 8:06 am
First of all it is not a good practice to have code in triggers that depend on services/resources outside the database or databases on the same server for exactly the...
July 18, 2008 at 8:03 am
Viewing 15 posts - 8,341 through 8,355 (of 9,641 total)