Viewing 15 posts - 46 through 60 (of 98 total)
HI,
just to make sure I understand:
You could essentially retrieve that unique record by using just 1 or 2 columns in your WHERE clause.
E.g. SELECT EMP_ID, NAME FROM STAFF_LIST WHERE EMP_ID...
November 27, 2012 at 2:26 am
November 24, 2012 at 11:48 am
You may also want to look into Change Data Capture (CDC)
http://msdn.microsoft.com/en-us/library/bb522489(v=sql.105).aspx
B
November 24, 2012 at 11:42 am
And in SQL Server 2012, you can use FileTables which are very cool.
http://msdn.microsoft.com/en-us/library/ff929144.aspx
http://blogs.msdn.com/b/sqljourney/archive/2012/11/10/how-to-sql-2012-filetable-setup-and-usage.aspx
B
November 22, 2012 at 3:32 pm
Hi,
to find out last time server was restarted on SQL Server 2008, you can use:
SELECT sqlserver_start_time FROM sys.dm_os_sys_info
Then, to figure when the indexes were last used (i.e. to get an...
November 22, 2012 at 3:36 am
since you don't know what the user will throw at the SP, I would suggest you cahnge the data type of the input parameter to be a varchar.
Then, within the...
November 21, 2012 at 7:35 am
You should possibly use server side trace (SQL Trace) which has a relatively low impact on performance.
See the following article which compares SQL Trace v Profiler (v nothing):
http://sqlblog.com/blogs/linchi_shea/archive/2007/08/01/trace-profiler-test.aspx
also this article...
November 21, 2012 at 3:45 am
Hi,
Can you add some DDL? also provide some data and then the (simplified) code you use for your query.
As a starter for ten, and only thinking aloud, the issue is...
November 20, 2012 at 9:39 am
Hi,
all packages are XML files, meaning you can search through as text files.
I would suggest you download and install a porgram like textpad (http://www.textpad.com which offers a handy 'Search in...
November 20, 2012 at 3:26 am
Change Data Capture (CDC) is leveraging the changes applied to the logs as opposed to the actual database, as a result it will "no" impact on your DB performance so...
November 20, 2012 at 3:01 am
See if you can drop and recreate the user, maybe there's a disconnect there somewhere?
Have you tried logging into SQL Serevr as that user and run sme DELETE statements in...
November 19, 2012 at 8:21 am
November 17, 2012 at 4:00 pm
Look at SSIS (SQL Server Integration Services) which is one of the components of the SQL Server installation.
You should be able to quite easily set up a package which you...
November 16, 2012 at 6:56 am
I don't understand your query - would you mind adding some code you have so we can have a wee look at it? that would help tremendously.
Just based on what...
November 15, 2012 at 3:54 am
Hi,
Instead of giving additional rights to the user used for the report, you could change the way the SP is run by using EXECUTE AS [UserWithSufficientRights]
In SQL Server 2005 and...
November 13, 2012 at 2:52 am
Viewing 15 posts - 46 through 60 (of 98 total)