Viewing 9 posts - 271 through 279 (of 279 total)
aamir.a4 (10/16/2012)
October 16, 2012 at 12:10 pm
select into will make new table with the same column name and datatype, if you add false condition then only data schema will be copied without ady data
select * into...
October 16, 2012 at 5:26 am
Have you checked basic connections issue:
- ping by ip
- ping by host name
- telnet to sql port number
etc.
October 16, 2012 at 1:33 am
vamsi056 (10/16/2012)
October 16, 2012 at 1:20 am
vamsi056 (10/15/2012)
http://support.microsoft.com/kb/2032911
i only have one Laptop , can i run sql server on a normal windows server ? i can but this makes me...
October 15, 2012 at 10:41 am
vamsi056 (10/15/2012)
I want to install sql server 2008 r2 enterprise edition on my laptop...
Wow, enterprise edition on laptop? I can understand installing Developer edition, but Enterprise which cost many $?
You...
October 15, 2012 at 10:27 am
You have incorrect conditions in where clause, that eliminates value which you want to see. Try this, and correct conditions in where clause to your needs:
SELECT *, dbo.tPeriod.PeriodDiscription, dbo.[tTimeTable2012-13].StaffID, dbo.[tTimeTable2012-13].DayID
FROM...
October 15, 2012 at 6:53 am
http://www.mssqltips.com/sqlservertip/2027/a-closer-look-at-cxpacket-wait-type-in-sql-server/
Like they say, you should set ‘maximum degree of parallelism’ to lower number, or check how it was configured on SQL 2005 and set the same on SQL 2012
October 15, 2012 at 1:54 am
The user must have view server state permission, to grant user that permission execute:
GRANT VIEW SERVER STATE TO yours_user;
http://msdn.microsoft.com/en-us/library/ms179881.aspx sys.sysprocesses (Transact-SQL)
http://msdn.microsoft.com/en-us/library/ms186717.aspx GRANT Server Permissions (Transact-SQL)
October 14, 2012 at 2:15 pm
Viewing 9 posts - 271 through 279 (of 279 total)