Viewing 15 posts - 2,251 through 2,265 (of 7,168 total)
When you say you "changed it" if you just changed the extension from xls or xlsx to csv then you didn;t change much of anything except the file name. The...
January 26, 2013 at 5:28 am
MDS is just a tool within SQL Server that helps implement the concept of Master Data Management. Read up on MDM and you'll have a better understanding of what MDS...
January 26, 2013 at 5:25 am
Duplicate post. Direct replies here:
http://www.sqlservercentral.com/Forums/Topic1411923-147-1.aspx
January 26, 2013 at 4:41 am
The error message seems pretty clear and even tells you where in the file the problem resides. Your XML file is malformed due to it containing an invalid character.
January 26, 2013 at 4:40 am
andy.westgate (1/25/2013)
My question would be, can I just execute the batch job from with in a stored proc or would I run into the same permissions issues?
You could but having...
January 26, 2013 at 4:28 am
I doubt anyone would argue against setting it but it's probably of limited value if you have multiple GBs of available RAM. It might be useful if your Express instances...
January 25, 2013 at 7:41 am
In its simplest form:
CREATE PROC dbo.createnewdb (@dbname SYSNAME)
AS
BEGIN
DECLARE @sql NVARCHAR(MAX) = N'CREATE DATABASE ' + QUOTENAME(@dbname);
EXEC(@sql);
END
GO
EXEC dbo.createnewdb N'newdb';
There are too many...
January 25, 2013 at 7:37 am
After installing the command line tools you linked to, a simple batch file or PowerShell script that accepts two parameters and calls bcp.exe to execute a stored procedure should suffice.
January 25, 2013 at 7:22 am
Are you asking whether you should design your database to only allow accessing data via stored procedures? Or something to do with having a stored procedure that someone could execute...
January 25, 2013 at 7:08 am
I have another database 'emp' in which i have used empdbo as login name.
So when i login with 'empdbo', i'm able to access 'emptest' db. This should not be allowed.
How...
January 25, 2013 at 6:59 am
If you're concerned or are already bumping into issues getting consistency checks to complete on a 3TB database you can consider splitting the workload:
January 25, 2013 at 6:42 am
Angelindiego (1/24/2013)
January 24, 2013 at 10:30 pm
I am pretty sure I have previously applied Developer Edition on top of Express and been successful. I know I have applied Enterprise on top of Standard with no issues....
January 24, 2013 at 10:23 pm
Hasitha Amarasena (1/24/2013)
January 24, 2013 at 4:38 pm
Viewing 15 posts - 2,251 through 2,265 (of 7,168 total)