| Thread | Last Post | Replies |
|
| hang on multiple statements in dynamic SQL query (SQL 2000) | 28 Feb 2010 14:48 GMT | 3 |
I build a dynamic command that combines two queries, an INSERT and an UPDATE. The procedure is hanging after the first time the INSERT runs, and I can't figure out why. Trying:
|
| 0xC0207015 error in SSIS but not DTS | 28 Feb 2010 09:26 GMT | 3 |
Folks, I have DTS jobs that I moved to a SQL 2005 server which run fine when I execute them manually as 'legacy' jobs. However, when I try to schedule them (run them via SSIS), they generate this error:
|
| Chart Question | 28 Feb 2010 09:22 GMT | 1 |
I am doing a column chart in SSRS 2008. Is there a function or a way to mouse over the bar and see the data value of the column. I see there is a way to show the value in the bar but I want to be able to mouse over it (value appears then disappears) like in excel. Is this ...
|
| restricting access to sp_table_statistics2_rowset | 28 Feb 2010 04:11 GMT | 6 |
Greets, A company I work for has granted ODBC access to some of their clients (a risky proposition, I totally agree.) I have been tasked with analyzing the load these clients incur, and in the course of that, I noticed some calls to
|
| Design question | 28 Feb 2010 03:27 GMT | 1 |
This is a design question. Here's hoping Joe Celko haunts this newsgroup ;) The relevant DDL will be at the bottom of the post. We have two entities -- sporting events and "product" which could be a cup, shirt or a fee. Obviously, events have a number of attributes not needed
|
| Case statement strangeness | 28 Feb 2010 02:56 GMT | 5 |
Given that this query is easy to understand: Select case 'Rep' when null then 'SBr'
|
| Preferred file group | 27 Feb 2010 18:39 GMT | 2 |
Our application records transactional events (maybe 300K to 500K rows per day) on a separate file group called HISTORY. I was wondering if there are performance considerations when creating indices on this history table. That is, do I get a performance improvement if the index ...
|
| Blocking problem | 27 Feb 2010 18:37 GMT | 14 |
I'm invoking "SqlConnection.BeginTransaction()" just before I do a series of inserts into multiple tables. I just ran a test and discovered that until the transaction is committed, it apparently blocks other users coming through the same code. Each user will be inserting ...
|
| How Can I establish connection 16bit o.s MS DOS 6.22 to to SQL Se | 27 Feb 2010 18:28 GMT | 4 |
We have to establish a connection SQL Server on 16-bit MS DOS 6.22 o.s Tested Methods: ISQL.exe, Osql.exe; Conclusion: Both exes can not be run on the 16-bit DOS operating system. SQL Server versions used: MS SQL 2008, MS SQL 2005, MS SQL 2000
|
| Does somebody understand what they mean here. Some of it is about Integrated security | 27 Feb 2010 18:10 GMT | 8 |
I received this from a person in a news group. I have replied to the news group to get some information about what this actually means but haven't received any kind of respons so I hope I might get some from this group because it's about Sql server.
|
| SQL Server 2005: Job resheduling | 27 Feb 2010 18:06 GMT | 2 |
Let's assume there is a Sql Server database with contains a stored procedure. Sql Server Agent has a job, which runs this stored procedure. The shedule for this job is defined as: Shedule: recurring, occurs daily, once at SomeHour;
|
| separte text | 27 Feb 2010 12:04 GMT | 1 |
I have a query setup as a trigger below in sql 7: declare arow cursor for select sonitem, spart, soq, sdisc, sunitprice, sprice from salesitems where sona = @xson and soq>0 open arow
|
| Refresh SQLServer Local Cache | 27 Feb 2010 04:25 GMT | 2 |
When i m using Refresh Local Cache in Local Server its Working properly. But when i Connect to Remote Server then its not Working Can you tell me is their is any Solution or Issue with this, Or I have to Use RED GATE TOOLS for Refreshing Cache
|
| exec usp_MyProc cast(@MyParam as int) | 26 Feb 2010 21:57 GMT | 2 |
Can you pass expressions to a proc?
|
| Need help with the Query. | 26 Feb 2010 20:50 GMT | 5 |
I need to construct a query base on the requirements below and get stuck. Any help would greatly appreciated. IF OBJECT_ID('Tempdb.dbo.#Temp', 'u') IS NOT NULL DROP TABLE #Temp
|