Viewing 15 posts - 31 through 45 (of 440 total)
You find it om the SQL Server 2012 media.
August 11, 2012 at 11:34 am
I am not quite sure what you want to know, but to control whether an instance is starting automatically or not, go to:
Start Menu | All Programs | Microsoft SQL...
July 25, 2012 at 12:47 am
Sumit Rastogi (7/11/2012)
July 11, 2012 at 9:46 am
To be honest, I don't quite see why there is a requirement to store numbers with a specific language characters. I would store the data as int, decimal and so...
July 11, 2012 at 3:53 am
The options are described on TechNet
If there are anything particular that seem unclear too you, please tell.
July 11, 2012 at 12:46 am
How about this?
CREATE TABLE QCHECK([Access Chapter 1 Big Name [ment]]] VARCHAR(100))
July 11, 2012 at 12:42 am
In SQL Server Management Studio, Right Click the database | Tasks | Shrink | Files
Choose the Appropriate file and options.
July 11, 2012 at 12:38 am
SQL Server 2008 R2 bumps the database version.
As a general rule: Always develop databases on the lowest version you support. And don't expect to be able to restore or re-attach...
July 7, 2012 at 2:53 am
First of all, although I am not the thread starter I'd like to thank Gail for the short the concise answer.
Unfortunately, there is no such thing as a free lunch,...
July 6, 2012 at 6:23 am
The SQL Server Service account must have permission to perform the action, both on the share and the file. If it runs as local system, it does not have access...
June 29, 2012 at 2:57 am
What version of SQL Server are you using? I've successfully tested the code both on SQL Server 2008 R2 and SQL Server 2012.
Edit:
Paste all the code into a blank SQL...
June 28, 2012 at 9:31 am
Like this?
declare @cmd nvarchar(255);
select @cmd = '
bcp "select cast(cast(XMLColumn as nvarchar(max)) as xml) from DB1.[dbo].[XMLFiles] for xml path('')" ' +
'queryout "C:\sample.xml" -S...
June 28, 2012 at 6:40 am
I think (am not 100 percent sure) that this shows how you can do it:
create table test (a int, b int, c int, d int, e int);
go
insert into test values...
June 28, 2012 at 6:34 am
This is the number of write operations that SQL Server has sent to the Windows API for writing to disk. As such, it is unaware of your RAID level and...
June 26, 2012 at 2:15 pm
Viewing 15 posts - 31 through 45 (of 440 total)