Viewing 15 posts - 7,741 through 7,755 (of 9,641 total)
Could you post some sample data so I can really understand what you are asking?
Based on what I understand your question to be I think you could something like this:
IF...
August 25, 2008 at 10:06 am
Adi has provided the only solution I am aware of.
August 25, 2008 at 9:42 am
What do you mean by completely dynamic? Do you mean you want to be able specify the value each time? For example I may run the job today with...
August 25, 2008 at 9:10 am
I have noticed that people have mentioned googling a problem or asking someone else at the office for help on an issue as cheating. I don't consider either cheating....
August 25, 2008 at 8:35 am
1. Create a report
2. Drag the Image item from the Toolbox onto the report
3. Choose Embedded as the Image Source
4. Click Next
5. Click New Image
6....
August 25, 2008 at 7:41 am
You can't have this line in your second EXEC in the WHILE:
- isnull((select sum(OriPPh) from PPh where InvoicePajak = '''+@InvoicePajak+''' and Period between '''+@StartPrd+''' and '''+@EndPrd+'''),0)
That is is aggregate in...
August 25, 2008 at 7:31 am
What control are you using to display the data? If you are using a table you can use set the grouping to the Server and in that level take...
August 25, 2008 at 7:19 am
If you know the queries that are timing out you should run them in SSMS and check the execution plans to see where you can tune them. You can...
August 25, 2008 at 7:14 am
Just a guess since I don't know what your error is, but if your columns can be NULL and you are handling that for display purposes you also need to...
August 25, 2008 at 7:04 am
When you do a Data Conversion transform you get a new column and then you need to map the new column to the destination. I'm guessing you are still...
August 25, 2008 at 6:58 am
Interesting editorial and I'd guess it had some basis in this forum thread about embellishing resumes: http://www.sqlservercentral.com/Forums/FindPost557642.aspx.
In my opinion is comes down to the prevalence of situational ethics, it's right...
August 25, 2008 at 6:36 am
In this case you have 2 options:
1. Storing student_id in the student addresses table will allow for multiple addresses per student.
2. Have a Students table, and Addresses table...
August 25, 2008 at 6:27 am
Jeffrey Williams (8/23/2008)
Jeff Moden (8/23/2008)
August 23, 2008 at 12:38 pm
How do you want to pass the date value? Do you want to get the current date? Is it a value stored in a database somewhere?
August 22, 2008 at 6:53 pm
sp_lock returns the DB_ID so you can run Select DB_NAME([db_id]) to find the name of the database and then you can run select Object_Name([object_id]) within the context of the database...
August 22, 2008 at 6:49 pm
Viewing 15 posts - 7,741 through 7,755 (of 9,641 total)