Viewing 13 posts - 76 through 88 (of 88 total)
this errors comes usually if the file is opened While running the bulk insert command.
January 9, 2012 at 5:54 am
SQL server is a software product whose primary function is to store and retrieve data as requested by other software applications, be it those on the same computer or those...
January 9, 2012 at 5:41 am
is your database in suspect status?
Which version of sql server that you are using ?
January 9, 2012 at 5:35 am
Have you double checked that there is no processes is curently using your database.
Select * from sys.sysprocesses where dbid=db_id('dbname') ---- run this and check.
January 9, 2012 at 3:29 am
There is nice script in below link.
January 9, 2012 at 3:11 am
January 9, 2012 at 3:06 am
Use this.
EXECUTE AS USER = 'Wanida'; -- User name
SELECT * FROM fn_my_permissions('HumanResources.Employee', 'OBJECT')
ORDER BY subentity_name, permission_name ;
REVERT;
GO
more details.
http://www.mssqltips.com/sqlservertip/1440/script-to-determine-permissions-in-sql-server-2005/
January 8, 2012 at 2:08 am
nice article!!!
January 7, 2012 at 12:49 pm
timeout error comes at any specific time? or it comes certain event like report extraction or any other. ?
if so try to figure our what exactly the requets are...
January 6, 2012 at 6:26 am
Try using this in your query.
SELECT * FROM tablenae WHERE DATEPART(dw, datecolumn) IN (1, 7);
January 6, 2012 at 2:41 am
Viewing 13 posts - 76 through 88 (of 88 total)