Viewing 15 posts - 2,116 through 2,130 (of 7,168 total)
VBScript can do popups or download Visual Studio C# Express Edition and create a Windows Forms app.
February 5, 2013 at 8:38 pm
In that case I would recommend you move towards a C# Windows Forms app. Anything done in Batch would be a workaround and I cannot bring myself to recommend new...
February 5, 2013 at 6:55 pm
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...
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."
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...
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...
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
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...
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...
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...
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....
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...
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...
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...
February 5, 2013 at 10:32 am
Viewing 15 posts - 2,116 through 2,130 (of 7,168 total)