Viewing 15 posts - 136 through 150 (of 629 total)
Last fleeting thought. I might explore replication. My initial and brief research indicates that filtered replication may be possible. If this is correct it may be easier than writing the...
October 10, 2013 at 6:04 pm
Sorry I responded too quickly and my suggestion won't help since you need to purge the primary.
I have seen commercial applications that archive data into a separate but identically structured...
October 10, 2013 at 10:57 am
Can you restore a backup to your reporting server?
October 10, 2013 at 10:46 am
pietlinden (9/25/2013)
September 25, 2013 at 3:43 pm
http://sqlmag.com/sql-server-reporting-services/ssrs-how-create-reports-user-protect-sensitive-data
There seems to be some important security considerations here.
I would attempt to pass the userid as a parameter to a stored procedure and NULL the column there rather...
September 19, 2013 at 12:43 pm
Try this and let us know if you run into any issues.
September 18, 2013 at 2:21 pm
What is the relationship? Can a customer have multiple accounts or can an account have multiple customers.
>> I am also assuming that it is trying to insert ALL of the...
September 18, 2013 at 2:15 pm
>>Are there any potential problems I might face when upgrading the OS of an existing SQL Server install?
Quick update in case anyone comes across this in the future.
The integration services...
September 17, 2013 at 12:33 pm
I would use the HTTP Connection Manager to import the file into a staging table.
http://technet.microsoft.com/en-us/library/ms137602.aspx
After this I would write a TSQL statement using the MERGE statement and either...
September 10, 2013 at 12:52 pm
What would be the advantages/disadvantages of using a trigger for the notifications, please?
The advantages would be quasi-instantaneous notification and you would eliminate the possibility that the error would prevent some...
August 22, 2013 at 3:15 pm
So I would need to put the 'Begin CATCH...' after each section?
Where does the results from the 'SELECT * FROM [dbo].[#Logs]' go?
You would have to put the TRY/CATCH after each...
August 22, 2013 at 2:54 pm
CREATE TABLE [dbo].[#Logs](
[Message] [varchar](300) NOT NULL,
[MessageType] [varchar](14) NOT NULL,
[Action] [varchar](120) NOT NULL,
[CallingProcedure] [varchar](50) NOT NULL,
[SuccessFlag] [char](1) NOT NULL,
[ErrorNumber] [int] NULL,
[ErrorSeverity] [int] NULL,
[ErrorState] [int] NULL,
[ErrorProcedure] [varchar](126) NULL,
[ErrorLine] [int] NULL,
[ErrorMessage] [varchar](4000) NULL,
[DateTimeStamp]...
August 22, 2013 at 12:40 pm
And as I stated earlied how do you look at a log for a stored procedure? If I have a 1000 line SQL with 50 different SQL statements and...
August 22, 2013 at 12:12 pm
Thanks. I see now, the CONVERT does it all.
August 19, 2013 at 11:39 am
I haven't thought about or looked at this code in many years....but maybe it will help you. The parameters are in cells B2 and D2.
Private Sub CommandButton1_Click()
...
August 12, 2013 at 2:36 pm
Viewing 15 posts - 136 through 150 (of 629 total)