Viewing 15 posts - 2,551 through 2,565 (of 3,489 total)
I would be wary of a design like that. How would you deny update/delete on a table if you had all of your stored procedures like that? If they...
April 29, 2015 at 5:56 pm
<zing!>
Sorry, missed that COMPLETELY.
April 28, 2015 at 9:46 pm
Save yourself the headache. Store the dates as dates, not as two columns with numbers. Then you can do date math really easily, index columns and all that....
April 28, 2015 at 9:02 pm
What are you trying to do? Filter the report so they only see the records they want? That's pretty easy.
Or are you trying to make the fields in your...
April 27, 2015 at 9:43 pm
Not near enough information to help.
What does the signature of the stored procedure form Oracle look like?
storedproc_name
@param1 <datatype>,
@param2 <datatype>
If the stored procedure already has paramters, are you trying to use...
April 27, 2015 at 11:27 am
By far the easiest way of dealing with stuff like this is by using a Calendar table. Then you can get ANY day of ANY week...
SELECT ..
FROM CalendarTable
WHERE WeekNumber...
April 23, 2015 at 5:27 pm
Why not just cascade the parameters?
First one is Elementary/Middle/High School
Second filters based on that.
SELECT Grade FROM src WHERE Level = @Parameters!Level
April 23, 2015 at 8:18 am
Think if it this way:
T-SQL does all the data manipulation
VBA does the front end stuff (if you're using something like an Access FE and a SQL Server BE) -- pretty...
April 22, 2015 at 9:25 pm
Not sure if it's possible, but one way might be to use an ADO connection from inside Excel to push the results to SQL Server...
April 18, 2015 at 10:25 am
This looks like a pretty good answer:
https://answers.laserfiche.com/questions/48435/SQL-Transaction-Log-is-taking-up-all-drive-space
Then read Gail's articles:
http://www.sqlservercentral.com/articles/64582/
http://www.sqlservercentral.com/articles/Transaction+Log/72488/
April 14, 2015 at 10:51 pm
John,
Any chance you can upload a copy of your report? The fun part is that you have to provide some data for it. So you have two options:
1....
April 14, 2015 at 5:31 pm
If you're using a matrix, you need at least one Row Group and one Column Group as well as one Aggregate...
So... this worked for me:
Row Groups: [PeriodEnd] (or the date...
April 14, 2015 at 4:22 pm
Might sound like a dumb question, but what happens if you add a table to the report and drop the fields into a tablix but don't filter it. Just...
April 13, 2015 at 9:33 pm
Okay, I was going to use a Calendar table to force the dates to exist. DAX is just still kind of mind-boggling.
I figured out the solution after the...
April 13, 2015 at 12:02 pm
Not much for details. BOL (Books On Line... hiding under the F1 key) is your friend. Check out this article on CHARINDEX. It should get you started. ...
April 12, 2015 at 10:21 pm
Viewing 15 posts - 2,551 through 2,565 (of 3,489 total)