Viewing 15 posts - 4,291 through 4,305 (of 7,168 total)
mark.tait (4/27/2012)
I will try to use SPs as much as possible, and I'll also look at setting up a role, to just be able...
April 27, 2012 at 7:35 am
PS how does this affect your specific situation? We don't know if it was a root cause, but it could have been. When SQL Server starts getting greedy, and Wndows...
April 27, 2012 at 7:19 am
Grant Fritchey (4/27/2012)
What about using the OUTPUT clause. You can output the IDs generated from...
April 27, 2012 at 7:10 am
Thanks. From those numbers it looks like you need to set max memory for the buffer pool. You have it at 2097152GB, which in peak usage times will allow SQL...
April 27, 2012 at 7:01 am
Gopal Singh (4/26/2012)
I have one parent & child table and i have make relation ship using a foreign key. Primary key in parent table is forein key in child table.
So...
April 26, 2012 at 5:23 pm
It's kind of tough to visualize with no DDL, sample data and desired results to infer your requirement and test code against...can you provide that?
Some guesses though...initial thought was two...
April 26, 2012 at 4:49 pm
Security is a big topic in SQL Server...but for a simple approach abide by the notion that "a database user should only be able to do what is needed to...
April 26, 2012 at 4:33 pm
My first thought was to check the Login facet @sid property to see if it was NULL, but that turned out to be harder than it should have been. Then...
April 26, 2012 at 3:50 pm
Just looking out in case you were now supporting a database that originated on 2000 and had some impure data. I inherited a bunch of 2000 DBs a while back...
April 26, 2012 at 3:20 pm
It's a good idea to make sure Data Purity was run cleanly since the upgrade. The info is on the same page Gail pointed you to 😉
April 26, 2012 at 2:52 pm
Note that just restoring the database will not make it fully operational on the 2008R2 instance. You also need to make sure you transfer the Server Logins used within that...
April 26, 2012 at 2:44 pm
Test_plan-1.sqlplan
It looks like you could benefit from an index on Users.ID that INCLUDEs email but I need to see the DDL to be sure. Can you please provide the DDL...
April 26, 2012 at 1:54 pm
What does the proc do? It, or something else in the stack, may be changing your security context using EXECUTE AS or sp_unsetapprole. Can you post the procedure code?
April 26, 2012 at 12:59 pm
DBCS is not natively supported in SQL Server, only ANSI (CHAR & VARCHAR) as well as Unicode (NCHAR & NVARCHAR). If you want to store DBCS in SQL Server it...
April 26, 2012 at 12:49 pm
Viewing 15 posts - 4,291 through 4,305 (of 7,168 total)