Viewing 15 posts - 106 through 120 (of 140 total)
Make sure your tick the SQL SERVER box at the root of all the log files; this will automatically select all the log files. Then run your filter.
Logged events...
April 23, 2012 at 7:50 am
Just to back up Koen's comment, the file does need to exist first but once populated you can copy the file to another location as previously posted.
April 23, 2012 at 7:40 am
You can specify a dynamic destination in the File System task.
I found this after a quick Google; hope it helps.
http://sqlserversolutions.blogspot.co.uk/2009/04/copyrename-file-using-file-system-task.html
April 23, 2012 at 7:39 am
That's a a very big question as it covers so many facets! Only you as the developer and your business colleagues can decide if CLR is suitable for your environment.
A...
April 23, 2012 at 4:34 am
Personally, I try and avoid dynamic SQL but understand it has it's place.
Unfortunately, I believe you cannot execute dynamic SQL in a function (via sp_executesql).
You could explore the creation of...
April 23, 2012 at 3:37 am
You can certainly reference other databases and tables within a function providing the permissions are in place.
Remember though, UDF's within a SELECT statement have to run on every row returned...
April 23, 2012 at 3:17 am
More information would be really, really helpful!
What is the column type of ?AddItemVal?
What is the column type of @MyVal?
What is the column type of Column2
Do have some sample data?
Was this...
April 23, 2012 at 3:08 am
A simple Google search turned this up.
http://msdn.microsoft.com/en-us/library/windowsazure/ee730904.aspx
Looks like there are several ways to do it - the following is a copy and paste from the hyperlink:
Migrating Databases to...
April 23, 2012 at 2:29 am
I'd recommend a tally table. Keep the computations to a minimum as this will result in more compute cycles which will impact on the cost of the instance over time.
April 23, 2012 at 2:26 am
Help and an exchange of ideas is what SSC Forums are great for. Best of luck with your issue.
April 20, 2012 at 9:13 am
Is this a new problem, a problem that occurs occasionally or happens with every transaction?
April 20, 2012 at 8:43 am
Javascript... umm.... this is a SQL Server Forum!
April 20, 2012 at 6:57 am
I have to agree with Gail here. If you checked for blocking / long running queries / index fragmentation then more details would be useful.
Have you checked the available resources...
April 20, 2012 at 6:32 am
This is not a solution but is table possibly over-indexed? Too many indexes will impact INSERT, UPDATE and DELETE performance as the indexes have to modified.
April 20, 2012 at 6:16 am
Replacing characters can be easily done with the REPLACE function available in SQL Server 2005 onwards.
http://msdn.microsoft.com/en-us/library/ms186862(v=sql.90).aspx
April 20, 2012 at 5:51 am
Viewing 15 posts - 106 through 120 (of 140 total)