Viewing 15 posts - 6,046 through 6,060 (of 6,400 total)
happening for me too
think this just maybe one of them things with RC0
December 6, 2011 at 3:06 am
do you want to run the full string including the CREATE PROC, or just the contents of the proc
EG EXEC ProcName or CREATE PROC ProcName.....
Also you have only provided one...
December 6, 2011 at 2:13 am
I'll agree with all of the above, you cannot do this via the SSMS GUI, the options you have are to create the procedures from the scripts, put them in...
December 6, 2011 at 1:51 am
please provide your DDL scripts so that we can assit you better.
December 6, 2011 at 1:48 am
how do you mean you want to do this through SSMS?
the scripts Gianluca provided can be compiled and run through SSMS or set in a job to run on a...
December 5, 2011 at 9:03 am
From the documentation
How to Calculate Processor Licenses for a Single VM
If your Virtual host IS NOT hyperthreaded
# of Virtual Processors assigned to the VM / # Cores in the...
December 5, 2011 at 7:05 am
do a full backup on a weekend, differentials every day except your full backup day, tx logs every X mins/hours
E.G
Sat, Sun, Mon, Tue, Wed, Thurs, Fri
Full, Diff, Diff, Diff, Diff,...
December 5, 2011 at 6:51 am
Roy, can you detail why you would put your SQL servers in the DMZ, as I too, would consider this as a massive security issue.
Typically the DMZ is outside of...
December 2, 2011 at 9:05 am
you could try this to find out whats still on the filegroup
SELECT
o.[name] AS ObjectName,
o.[type] AS ObjectType,
s.[name] AS SchemaName,
f.[name] AS [Filename],
i.[name] AS PrimaryKey,
i.[index_id] AS IndexID
FROM
sys.indexes i
INNER JOIN...
December 1, 2011 at 7:44 am
is the data in the table encrypted so when you do
SELECT col FROM table
Col is returned in an encrypted state?
If so it looks like the insert done by the...
December 1, 2011 at 4:53 am
It would seem that your connection pool isn't clearing out dead/idle connections, or something spawned to many concurrent connections and the limit was reached.
Wasn't any changes to the app yesterday...
December 1, 2011 at 4:45 am
can you post your full error log
also MS say they have resolved the bug in this hot fix http://support.microsoft.com/kb/2543687 after a did a google search.
December 1, 2011 at 3:58 am
only other time i have seen this is when the server was rebooting due to automatic updates.
did your server reboot last night?
December 1, 2011 at 3:49 am
have you checked the SQL Server Configuration Manager on the server?
under SQL Server Network Configuration, Protocols for ~INSTANCENAME~ (named instance), or Protocols for MSSQLSERVER (default instance), check that Named Pipes...
December 1, 2011 at 3:07 am
If its running on a server I would always run a server OS, if your running it on a desktop for DEV reasons then either or.
If its a production server,...
December 1, 2011 at 2:58 am
Viewing 15 posts - 6,046 through 6,060 (of 6,400 total)