Viewing 15 posts - 2,116 through 2,130 (of 7,164 total)
There is no such thing as "sysadmin rights to only one database" but I think I know what you mean. sysadmin is a Fixed Server Role and being a member...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 6:06 pm
Table Types are very similar to Table Variable in many ways. Their main use is as a parameter to a Stored Procedure, known as "Table-valued Parameters."
Use Table-Valued Parameters (Database Engine)...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 5:58 pm
When SSIS is kicked off from a server, like when running an Agent Job via SSMS, the package is actually running on the server not on the user's machine. What...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 5:56 pm
SQLRNNR (2/5/2013)
sqlfriends (2/5/2013)
I read a tutorial and recommend this option should be enabled for all instances. Read and still a little confusing about when I should enable or disable...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 5:41 pm
Please do not cross-post. It just fragments replies and wastes people's time. Direct replies here:
http://www.sqlservercentral.com/Forums/Topic1415972-359-1.aspx
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 5:35 pm
Who do you suppose might interact with a Message Box when it is presented during an unattended execution of an SSIS package :unsure:
Your best bet is not to use message...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 5:33 pm
FREDERICK (2/5/2013)
Another party set up the Server and Databases.
First the Server was set up
Windows Server 2008 SP1
Then the Databases were set up
SQL Server...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 5:31 pm
Another option is to have the job that starts the trace add an entry into a control table after the trace is started so you can later use that to...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 2:52 pm
In that case if you want to do everything in T-SQL then you will need to gain directory access. Some options are xp_cmdshell or a CLR object, there are others....
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 2:50 pm
David is right about the format-file not matching the file's format.
For starters you'll have to change all instances of this in your format file:
<FIELD ID="1" xsi:type="CharTerm" TERMINATOR="\t" MAX_LENGTH="255" COLLATION="SQL_Latin1_General_CP1_CI_AS"/>
to this:
<FIELD...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 12:48 pm
Borrowed from here and tweaked slightly:
DECLARE @trace_id INT = 1,
@path NVARCHAR(260);
SELECT @path = REVERSE(SUBSTRING(REVERSE([path]), CHARINDEX('\', REVERSE([path])), 260)) + N'log.trc'
FROM sys.traces
-- set this...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 10:54 am
To test the A- tokens, in a test environment of course:
- Setup a job that has the PRINT statement from Example A from the article I posted earlier.
PRINT N'Current database...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 10:32 am
CREATE TABLE statement for the target table?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 10:13 am
OK, good. You posted in an SSIS forum but that's fine, now we know what you need.
I am happy to help but it's a little hard to determine from...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 9:47 am
If you could clarify your original post about what you are trying to do...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
February 5, 2013 at 9:42 am
Viewing 15 posts - 2,116 through 2,130 (of 7,164 total)