Viewing 15 posts - 181 through 195 (of 1,124 total)
Does the following code work?
USE master
GO
CREATE USER jondoe FOR LOGIN jondoe
GO
GRANT EXECUTE ON [sys].[sp_OACreate] TO jondoe
GO
May 19, 2009 at 1:01 am
I'd recommend using delimited format instead of fixed length formats, as it is a lot easier to work with.
May 19, 2009 at 12:48 am
First of all, for all your future posts read this article on how to post questions to getter better responses[/url]
Secondly, read about the article on how a tally table replaces...
May 19, 2009 at 12:46 am
It can be done by adding two separate workflows for each of the files. And also to check for existence of a file you need to use ActiveX Script...
May 18, 2009 at 9:33 am
Heard about UNPIVOT clause in SQL 2005? This is where it can be used.
DECLARE @tblMessage TABLE
(
Id Int,
Description Varchar(50),
Message Varchar(256),
colName varchar(20)
)
DECLARE @tblError TABLE
(
ErrorNumber Int,
Variable varchar(20),
ABC varchar(20),
ABC1...
May 16, 2009 at 10:20 am
Yet another running total problem, follow this link that explains the 3 methods on how to calculate running totals.
For advanced method (i.e. Special Update method), see this article[/url] by Jeff...
May 16, 2009 at 9:41 am
veen_computers (5/16/2009)
Thanks for the solution. We have .net 2.0, Sqlserver 2005 reports environment. Inorder to perform this i need install this soft in Client's server machine.
So as u...
May 16, 2009 at 9:34 am
I use RSS Scripter to export all objects (includes data sources, reports, folders etc.) from a report server. Here is that download link
May 16, 2009 at 3:06 am
See the following links
May 16, 2009 at 1:03 am
jgenshlea (5/15/2009)
Yes, that worked....funny.I wonder if this is a bug.
That's not a bug, but indeed the intended behaviour of the operations "Move file" & "Copy file". These operations does...
May 16, 2009 at 12:53 am
Another way, should perform a little better.
SELECT AnalysisA, sum(COST) AS SummedCost, cOUNT(* ) AS TotalAnalysed
FROM #Product
GROUP BY ( CASE WHEN AnalysisA = '' THEN CONVERT( VARCHAR(40),...
May 15, 2009 at 10:15 am
I don't see any problem in creating N users in any database, actually it is a better practice to grant only the permissions to users which they require and not...
May 15, 2009 at 3:13 am
See the following link:
http://code.msdn.microsoft.com/SQLExamples/Wiki/View.aspx?title=DuplicateRows&referringTitle=Home
May 15, 2009 at 1:31 am
To create a SQL Server Agent job, a USER need to have execution permissions on objects
1. Execute sp_add_job to create a job.
2. Execute sp_add_jobstep to create one or more...
May 15, 2009 at 1:17 am
usman.tanveer (5/14/2009)
Thanks everyone, specially Ramesh.
You are welcome, and for all your future posts read this article on how to post questions to get better answers[/url]
May 15, 2009 at 1:07 am
Viewing 15 posts - 181 through 195 (of 1,124 total)