Viewing 15 posts - 721 through 735 (of 9,641 total)
Ed Wagner (9/4/2014)
Koen Verbeeck (9/4/2014)
andrew gothard (9/4/2014)
Gazareth (9/3/2014)
I've just been told: "We don't recommend running SQL commands against the database"Right. May as well go home then!
You know Chris Date? ...
September 4, 2014 at 6:25 am
Can you connect to the SQL Server using another tool from your Windows 7 PC?
Can you use the same code in a .NET console application (C# or VB) and connect...
September 3, 2014 at 11:48 am
Please be aware that the code you have provided is open to a SQL Injection attack. Whenever building dynamic SQL you either need to sanitize the input (very hard),...
September 3, 2014 at 11:34 am
As others have said, you need some way of determining what is the most recent row for each Case. Typically that is a CreateDate or UpdateDate column, or, in...
September 2, 2014 at 6:23 am
Since this is out on a file share you could look at the open files in computer management connected to that server to see what has the file(s) open.
August 29, 2014 at 10:03 am
There's no way I know of to natively share the results of a dataset between reports. I'd question the architecture that requires sub-reports that re-use data in the main...
August 29, 2014 at 9:59 am
Are you running the report from a report server or within BIDS/SSDT?
If from a report server I'd check the ExecutionLog3 view to see if the query execution is the issue...
August 29, 2014 at 9:57 am
Sounds like a good use for RowNumber() something like this (since I don't have your schema I'm just guessing at some things see the first link in my signature for...
August 29, 2014 at 9:16 am
Because this is implemented using .NET everything is case sensitive so if dataset2 is really Dataset2 it won't match.
August 29, 2014 at 9:12 am
Steve Jones - SSC Editor (8/29/2014)
It filled up quickly. We should have pulled...
August 29, 2014 at 9:10 am
When I get this error it's usually because I've opened the file in Excel/NotePad/PickYourEditor that has a lock on the file.
How are the files being created? Is the create...
August 29, 2014 at 8:18 am
Jeff Moden (8/28/2014)
August 29, 2014 at 8:16 am
Most of this information can be returned by starting with sys.database_principals, sys.database_role_members, and sys.database_permissions. You may want to use a recursive CTE to get all the role information because...
August 29, 2014 at 8:07 am
Sure you can deploy a report to any report server regardless of what the data source is. The only issue you'll encounter is if the data source already exists...
August 29, 2014 at 8:02 am
Stefan Krzywicki (8/29/2014)
August 29, 2014 at 7:59 am
Viewing 15 posts - 721 through 735 (of 9,641 total)