| bio | website | |
|---|---|---|
| location | Boulder, CO | |
| age | 39 | |
| visits | member for | 3 years, 4 months |
| seen | 9 hours ago | |
| stats | profile views | 66 |
|
Feb 26 |
comment |
Automated upload of a Salesforce file to Box.com record-linked folder Thanks for the answer. Unfortunately we will have to create our own solution. I was hoping to be able to use Box.com. |
|
Oct 26 |
comment |
Parameterizing an SQL query which uses the NOT LIKE, “ ^ ” wildcard? Yes, but you can use the contains first and then the combination with an AND. I just posted an answer that might work. |
|
Oct 26 |
comment |
Parameterizing an SQL query which uses the NOT LIKE, “ ^ ” wildcard? Are you only going to have two terms? Because there are going to be only 4 different combinations 'dog', 'cat', 'dog cat', 'cat dog' so you can create 4 combinations and just do an exact match search. |
|
Jul 18 |
comment |
Is there a way to make SELECT that fails not throw inside a TRY/CATCH? I think Ben's solution is pretty elegant and will perform similar to the if @@rowcount. |
|
Jul 18 |
comment |
Is there a way to make SELECT that fails not throw inside a TRY/CATCH? What type of error are you expecting on that select? Can you just avoid the expected error with a top 1? If there are no matches the @ID will remain null. |
|
Jun 4 |
comment |
Variation of SELECT * - all columns except those explicitly referenced @AaronBertrand, you are right, I did not know that you can drag the columns node :) I learn something new everyday! |
|
Dec 1 |
comment |
Is it possible to write single query for following scenario? Thanks Andriy, I changed the code. |
|
Jul 22 |
comment |
Dynamic Columns in Flat File Destination Hi @Pondlife, this is the scenario: I have a stored procedure that can return,lets say, up to 3 columns X,Y, and Z. Sometimes a client just need X, another client needs X and Y and some other clients need X and Z. Do you think I can use a script task and pass only the input columns based on the SP parameters? Thank you. |
|
Jul 15 |
comment |
Dynamic Columns in Flat File Destination The problem I am having is on your step 3. How do I add the columns to the flat file dynamically? |
|
Jul 14 |
comment |
Best practises to move a DB from Dev/ Test to Prod +1 Nice free open source tool! |
|
Jul 12 |
comment |
Can I optimize this SQL remote update? @MAW74656 let us continue this discussion in chat |
|
Jul 12 |
comment |
Can I optimize this SQL remote update? It is like a UNION but it performs better because it does not run a distinct. Check this article: bit.ly/oD6gtL |
|
Jul 12 |
comment |
Can I optimize this SQL remote update? I just added some code to show you what I am talking about. Basically you will be passing the whole variable table @wip as a "select union all" nested table to the remote server. |
|
Jul 12 |
comment |
Can I optimize this SQL remote update? How many records you estimate are usually going to be in the @wip table? |
|
Jul 12 |
comment |
Can I optimize this SQL remote update? In my case I needed to retrieve a few thousand rows from the remote server and I joined a temp table with what I needed. Then I found that it was bringing the whole table (that is what I think your update is doing right now), so I created a dynamic SQL with a IN in the where with all the IDs I needed to retrieve. I know is not very nice, but it decreased the time to milliseconds. |
|
Jul 11 |
comment |
Best approach: get the most recent N-side Record on a SQL Query on a N-1 relationship @Magnus, that is exactly what I thought while I was writing my answer. |
|
Jul 11 |
comment |
Best approach: get the most recent N-side Record on a SQL Query on a N-1 relationship Are you using Microsoft SQL Server? |
|
Apr 1 |
comment |
Are there any tools to integrate MS SQL Server Reporting with Ruby? @Rozwel Thanks! I think I might have to go that route, but I just wanted to ask the community if there are any tools similar to the .Net ReportViewer class. Where the end user can navigate, print, or export the report without having to re-invent the wheel. |
|
Nov 29 |
comment |
SQL XML Column displaying squares as nodes What do you mean squares? Like squares characters? If this is what you meant, try to convert the node to nvarchar instead of varchar. |
|
Nov 22 |
comment |
SQL Subtract exactly a year What SQL server are you using? (MS SQL, MySQL, Oracle, etc) |