Viewing 15 posts - 1 through 15 (of 27 total)
Love Mr. Ben-Gan's books!! One of the authors I look for when purchasing a new SQL Server book.
select ROW_NUMBER() over (partition by TABLE_SCHEMA, TABLE_NAME
order by TABLE_SCHEMA, TABLE_NAME, CONSTRAINT_TYPE),* from...
December 6, 2013 at 3:42 pm
Odd that it works with all tables selected. Are you using schemas or is everything under dbo? (was wondering if owner property set -- check sp_helpdb databasename because I...
October 2, 2013 at 3:49 pm
Did you try using the Microsoft JDBC driver (if possible in your situation) for connecting to SQL 2012?
August 21, 2013 at 9:26 am
Is this what you are looking for:
GRANT SELECT,UPDATE,INSERT,DELETE,EXECUTE ON SCHEMA::DM TO User;
GRANT SELECT ON SCHEMA::NY TO User;
GRANT SELECT ON SCHEMA::CA TO User;
August 16, 2013 at 11:11 am
Depending on the size of the company you could always have a list of standards for them to use when they install (hopefully developer edition unless they need the other...
August 14, 2013 at 3:44 pm
would this article help be close to your situation:
August 14, 2013 at 9:55 am
Encountering some of the same issues. The problem maybe running the SSIS packages using dtexec.exe(64-bit mode). Try going to your project properties --> configuration properties --> Debugging -->...
August 14, 2013 at 9:38 am
Not that I am aware of
The piece from the link that talks about it:
Deleting a data or transaction log file removes the file from the database. You cannot remove a...
August 14, 2013 at 8:54 am
I'm wondering if NextResult takes you to the next Result Set from the Reader. You probably only have one Result Set.
maybe you need to look at something like this or...
August 13, 2013 at 3:13 pm
Old thread, but still got the email.
I would agree that it would not carry over to the inactive cluster. Although, I have not tried it on a cluster, but...
April 21, 2010 at 10:11 am
The enterprise license was a partnership license. Management does not want to run a different edition on test/dev/production. It would be pointed at if anything goes wrong. ...
July 14, 2008 at 6:29 am
I guess you could assume that. I didn't feel this stored procedure would choke on a cursor. I didn't make it a priority when looking at the problem....
July 11, 2008 at 3:25 pm
There are some definite logic problems.:w00t:
I think this part is not making sense to me:
AND NOT EXISTS
(
SELECT 1
FROM master..syslogins sl
WHERE su.sid = sl.sid)'
I worked with what you...
July 11, 2008 at 1:49 pm
I agree totally on getting the SQL 2005 service pack 3 out. I do hope it is tested properly, but I would be surprised. I have several new...
February 1, 2008 at 7:05 am
Index Stats.....
ObjectId FragPercent RecordCount ...
January 10, 2008 at 1:38 pm
Viewing 15 posts - 1 through 15 (of 27 total)