Viewing 15 posts - 1 through 15 (of 27 total)
Seems like a value here is from the record keeping/auditing perspective.
To lessen the 'out of date' problem, why not add a date(s) as an ext prop(s)?
Something like...
November 27, 2017 at 7:26 am
As a DBA it sounds great to say we should have the flexibility to apply CUs or SP as necessary. The difficulty is when external entities(i.e. PCI-DSS) demands that all...
January 28, 2014 at 7:47 am
SELECT PlayerID
,score
,ROW_NUMBER() OVER(PARTITION BY PlayerID ORDER BY scoredate) as 'rank'
FROM Scores
December 5, 2013 at 11:47 am
I recently had this issue with SQL 2005. I resolved it by disabling remote connections ( so that my application servers would not keep stealing the connection )
You can also...
September 4, 2007 at 9:51 am
Or.... just look at the server as listed in Object Explorer in SSMS ( Sql Server Management Server).
Where you will also see the '9.00.2047.00' that indicates SP1.
December 19, 2006 at 8:25 am
Application roles are designed for just such a situation. The user has permissions that are only activated when the applilcation supplies the password for the application role. Outside the application...
December 19, 2006 at 6:44 am
SQL-DMO has been deprecated so I guess it will go away (in next SQL server release?)
November 17, 2006 at 9:57 am
You say you assigned logins to the new role. However, I believe only users are assigned to roles.
Have the logins you created been granted dbaccess ( are they actually users...
November 17, 2006 at 9:55 am
Can you describe what you mean by an incremental upload?
October 20, 2006 at 6:42 am
I guess I have the advantage of knowing the server which is hosting the SharePoint. Once you find out which server it is, you can look in the %content% database...
October 17, 2006 at 1:57 pm
I believe that the SharePoint site is using a SQL server database to store the Excel file in a binary column of a table.
In this case the 'export column' transform of...
October 17, 2006 at 7:05 am
I believe what you are looking to do is assign the parts of your connection string dynamically. The connection string can be controlled dynamically by manipulating the properties of the connection...
October 13, 2006 at 12:20 pm
Any variable you create in SSIS has a scope. I believe that a variable with Global scope would be one scoped at the SSIS package level as these variables are...
October 13, 2006 at 7:07 am
To set up Profiler, you can track the SP:starting event.
You want Profiler to report the object_id column., To determine the object_id, run this query:
select object_id('<name of SP>') in the database...
October 11, 2006 at 7:47 am
Viewing 15 posts - 1 through 15 (of 27 total)