Viewing 15 posts - 16 through 30 (of 164 total)
If you go via a CLR regex function, you can try this regex to see if it satisfies your spec:
(?xm)^[+-]?\d{1,3}(,\d{3})+(\.\d+)?$
|
^[+-]?\d{1,3}(\.\d+)?$
tested in RegexBuddy vs this input:
-4.012
6berry
+8
-234,345,234.012
7
pbo.PoBox34
got mathes:
-4.012
+8
-234,345,234.012
7
without seeing your...
July 9, 2012 at 2:56 pm
it is an SSIS package, and yes at times I call a child package from within a parent one.
Thank again for your help. It seems you showed me a way...
June 18, 2012 at 12:40 pm
Thanks, Brandie.
does it mean that in this new solution I'll need to rebuild all supporting objects like datasources, smtp managers, referenced packages etc? Or I could be able to reference...
June 18, 2012 at 12:28 pm
RE: Best bet for users (ones who aren't tools written by Microsoft) is to create the indexes on a test DB and run their tests.
Thanks, I'll follow your advice.
June 5, 2012 at 12:03 pm
if the reports are failing when you run them in the SSRS Report Server/Manager , next I usually:
1. open the reports up in Visual Studio SSRS Solution and make sure...
June 5, 2012 at 11:58 am
Charmer (6/5/2012)
Hi Friends,i tried ssis and export/import through ssms....but it says server instance is timed out to get the connection....
Have you established that your two servers can talk to each...
June 5, 2012 at 11:30 am
GilaMonster (6/5/2012)
June 5, 2012 at 11:26 am
SQLKnowItAll (6/5/2012)
i.e. In the properties of the solution, there is an option for OverwriteDataSources. That can cause big problems...
in VisualStudio, in your SSRS Solution, right-click on a Project [one of...
June 5, 2012 at 11:17 am
without seeing actual data you are trying to load into a table from a flat file it's hard to see what's wrong.
can you create a small test file, say with...
June 5, 2012 at 9:48 am
alternatively one can use .NET Regex.Match Class method to create a SQL scalar-valued CLR function to find those junk chars
in the range between \u0020 and \u007F [those one above ascii...
March 28, 2012 at 10:05 am
Pablo, Thanks for your prompt response.
Sergei Z
March 26, 2012 at 2:33 pm
RE: Just be sure the WHERE clause includes "TRANSACTIONDATE between low-limit and high-limit" where low-limit and high-limit exactly match a specific partition that should tell SQL Server to hit a...
March 26, 2012 at 2:18 pm
Is TRANSACTIONDATA the table expected to get the updates?
SQL Server 2008 has the ability to escalate locks to "partition" level before locking the whole table - this would...
March 26, 2012 at 1:55 pm
PaulB-TheOneAndOnly (3/26/2012)
Probably the easiest way run this process in batches and even do it in parallel would be to use the content of NBSEQUENCE,...
March 26, 2012 at 1:43 pm
Viewing 15 posts - 16 through 30 (of 164 total)