Viewing 15 posts - 2,251 through 2,265 (of 7,164 total)
Duplicate post. Direct replies here:
http://www.sqlservercentral.com/Forums/Topic1411923-147-1.aspx
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 26, 2013 at 4:28 am
lakh
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 25, 2013 at 7:47 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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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:
CHECKDB From Every Angle: Consistency Checking Options...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 25, 2013 at 6:42 am
Angelindiego (1/24/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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....
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 24, 2013 at 10:23 pm
Hasitha Amarasena (1/24/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 24, 2013 at 4:38 pm
A deployment matrix could mean many different things and even when in the same context it could mean different things to different people. To my knowledge it's not a standard...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 24, 2013 at 4:00 pm
It will create fragmentation as well but the severity can be greatly reduced if your autogrow settings are sensibly set. The serious problems with physical fragmentation arrive when you have...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 24, 2013 at 12:30 pm
Viewing 15 posts - 2,251 through 2,265 (of 7,164 total)