Viewing 15 posts - 1 through 15 (of 71 total)
We ended up as below:
USE db1
GO
-- Step 3
CREATE VIEW VW1
AS
...
September 29, 2015 at 4:43 pm
I created a login 'test_login'
I created a user 'test_user' for the login 'test_login'
I created a role named 'test' and added 'test_user' to that role.
I granted select and execute to the...
September 29, 2015 at 11:10 am
Thank you for your input mate.
I have found the solution for this. I break down the strings and add trailing zeros and make their length is 8(in my case). e.g....
June 19, 2015 at 1:47 pm
Thank you for your efforts mate..thats the start I wanted
June 4, 2015 at 5:22 pm
Thank you buddy..whatever way you have helped me is awesome
btw the article you suggested is almost like the same one I am following:-P
April 4, 2015 at 1:17 am
Thank you for your response
Here is the screenshot of the http connection manager (no proxy)
April 4, 2015 at 12:16 am
USE [msdb]
GO
/****** Object: StoredProcedure [dbo].[SQL_Agent_Jobs_Details] Script Date: 3/24/2015 4:02:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[SQL_Agent_Jobs_Details](@JobName varchar(5000)
,@LastRunDate nvarchar(20)
,@LastRunStatus varchar(50)
)
AS
BEGIN
-- SET NOCOUNT ON added to prevent...
March 24, 2015 at 5:05 pm
Any help guys..Percentage sampling is not sampling the data properly 🙁
February 13, 2015 at 11:36 pm
IMHO, the simplest way is to restore a backup of production over the dev with replace unless the size is an issue. The second bird you hit with this stone...
June 9, 2014 at 11:24 am
My objective was to refresh the Test server with the live data, so that we will have some realistic data to test with and it needs to be done with...
June 9, 2014 at 10:08 am
If we reseed the identity to -1 then the 2nd row in the table will have id 0..which is wrong
June 7, 2014 at 8:25 pm
Not possible.. You know the importance of an identity column right 🙂
June 7, 2014 at 2:48 pm
Solved it..
No need to set identity_insert ON and OFF before bulk copying.
SQLBulkCopyOptions.KeepIdentity takes care of this.
So, following code worked for me:
using (SqlBulkCopy bulkCopy =
...
June 6, 2014 at 5:20 pm
Viewing 15 posts - 1 through 15 (of 71 total)