Viewing 15 posts - 3,061 through 3,075 (of 7,502 total)
- keep in mind you should refresh your object browser frequently (afaik it doens't auto refresh)
- after start of sqlserver each db is being recovered.
So sqlserver opens the db...
April 2, 2010 at 2:32 am
very good one too .... even rocks the foundations of any RDBMS :w00t:
April 1, 2010 at 12:56 pm
always nice to share a laugh:-)
April 1, 2010 at 12:09 pm
1) keep your copy of the original files on a safe zone (if you haven't, start with a full backup of your current database )
2) you managed to actually attach...
March 31, 2010 at 12:42 am
The goal was to figure out if a login is member of n-windows groups.
e.g. this will show all auth paths for the given windows login (not a group)
-- how does...
March 30, 2010 at 12:02 am
Keep in mind that if a use belongs to multiple groups, the default database setting cannot be used !
Check the access paths and memberships:
Use yourdb
go
-- how does this login get...
March 29, 2010 at 2:38 pm
Nice and fast solutions.
Here's a similar thread ....
http://www.sqlservercentral.com/Forums/Topic699260-1291-1.aspx
March 29, 2010 at 6:16 am
My guess is K Cline is spot on.
Run your original select query and see if it produces result rows.
If not, find out why. K Cline explained what to do.
March 28, 2010 at 5:16 am
just my 2ct
In case of splitting the columns of one table to n tables with a (unique) subset of the columns of the original table:
- keep in mind to split...
March 26, 2010 at 12:40 pm
you declared SLsubDept with the column
[groupId] [int] NOT NULL
This means you must provide a value for this column when inserting new rows.
March 26, 2010 at 12:25 pm
Nice rework Gail.
Thanks again for sharing.
March 25, 2010 at 9:05 am
Best is to post your question in a new thread.
Check the default schema for this user in the restored database.
March 21, 2010 at 3:33 am
the connection pool is client side.
afaik by default the connection pool size is 100 connections.
You can monitor it using windows perfmon.
At sqlserver level you can get an overview of pooled...
March 19, 2010 at 8:15 am
Paul White (3/17/2010)
ALZDBA (3/17/2010)
...add the new definition using the "with nocheck" option to speed things up.
But then the constraint will be marked as untrusted, and will not be considered by...
March 17, 2010 at 7:13 am
You could just generate a script to do it for you !
I would advise to incorporate a transaction scope per FK-constraint so you can drop it and add the new...
March 17, 2010 at 5:57 am
Viewing 15 posts - 3,061 through 3,075 (of 7,502 total)