Viewing 15 posts - 1,111 through 1,125 (of 3,738 total)
On the machine that I reinstalled BIDS and it launched using my login it did not work for the Developer who uses that machine.
Similar situation on another machine. I log...
December 28, 2012 at 6:31 am
@SQLFRNDZ (12/27/2012)
How about disabling security software like antivirus and test it..?
Yes that is what I initially thought. I should have mentioned it.
I reinstalled BIDs on one of the PC's that...
December 27, 2012 at 5:39 pm
I going to try and reinstall BIDS on this one PC?
I had someone connect to another machine and they are to start BIDS and validate the SSIS Package rather quickly....
December 27, 2012 at 1:34 pm
Daniel Bowlin (12/19/2012)
I use "Don't save sensitive" and Package configurations for user names and passwords. Works like a charm.
I take it that you do not use DB2 or Oracle...
December 19, 2012 at 10:51 am
The DB2 equivalent to WITH (NOLOCK) is described in the following post:
http://www.sqlservercentral.com/Forums/Topic1040710-338-1.aspx#bm1040762
December 19, 2012 at 8:12 am
I need to correct a statement that I made with respect to the OPENQUERY being slow.
The OPENQUERY itself is not necessarily slow because it is using a Linked Server to...
December 17, 2012 at 4:43 pm
shannonjk (12/17/2012)
December 17, 2012 at 4:06 pm
What is the actual error that you are getting?
The reason that I ask is because I get a bogus truncation error or about a dozen tables from DB2 to staging.
If...
December 17, 2012 at 6:32 am
The following is a function that converts an AS400 Date Format to SQL Server.
Credit Jeff Moden.
CREATE FUNCTION [dbo].[udf_ConvertDB2toSQL](@CSC_DATE varchar(7))
RETURNS DateTime
AS
BEGIN
IF (LEN(ltrim(rtrim(@CSC_DATE))) = 6)
BEGIN
SET @CSC_DATE= '0' + @CSC_DATE
END
...
December 14, 2012 at 9:38 am
MSSQL_NOOB (12/14/2012)
Welsh Corgi (12/13/2012)
What is the specific Error Message?
CREATE VIEWS permission denied in database 'DBNAME'.
Edit:
I actually found http://social.msdn.microsoft.com/forums/en-US/sqlsecurity/thread/bfd630bc-e405-4f9d-b63f-f673b3f4ccf5/
that has the same issue. They are saying it was a bug...
December 14, 2012 at 8:59 am
I tested the function using a Date in the 20th Century and it does not work.:hehe:
DECLARE @MyDate DATETIME2
SET @MyDate = '1999-01-01'
SELECT dbo.fncConvertSQLToAS400Date(@MyDate)
:blush:
December 14, 2012 at 8:02 am
I created a simple function to convert the Date.
CREATEFUNCTIONdbo.fncConvertSQLToAS400Date
(@SQLDateDateTime2)
RETURNSINT
-------------------------------------------------------------------------------------------
AS
-------------------------------------------------------------------------------------------
BEGIN
DECLARE@rtnAS400DateINT
SET @rtnAS400Date =
(SELECT cast(datepart(yyyy,@SQLDate) - 1900 as varchar(4))
+ cast(datepart(mm,@SQLDate) AS varchar(2))
+ cast(datepart(dd,@SQLDate) AS varchar(2)) )
RETURN @rtnAS400Date
END
DECLARE @MyDate DATETIME2
SET @MyDate...
December 14, 2012 at 7:54 am
MSSQL_NOOB (12/13/2012)
MSSQL 2000A username has a DB_OWNER privilege. But when he tries to create views OR create dts package; it gives him a permissions error.
What is the specific Error Message?
December 13, 2012 at 1:46 pm
MSSQL_NOOB (12/13/2012)
There is no explicit permissions granted / deny on that username.
How did you verify that there is not an explicit deny for that User?
EXEC sp_helprotect NULL, 'UserName'
Is that User...
December 13, 2012 at 1:32 pm
I tested it and it works:
SELECT *
FROM T1 ;
CreateDate
2012-03-09 12:34:45.5670000
Are you using SQL Server 2012?
December 13, 2012 at 1:00 pm
Viewing 15 posts - 1,111 through 1,125 (of 3,738 total)