Viewing 15 posts - 6,916 through 6,930 (of 7,168 total)
This sounds like an extremely strange architecture...are you sure you want to allow data in a text file to dynamically dictate the tables you reference in DML you apply to...
March 16, 2011 at 12:37 pm
DZN (3/16/2011)
2. What would be the code to retrieve folder contents?
Time to hit the books...getting the contents of a folder is a trivial task in C# but it's a learning...
March 16, 2011 at 12:30 pm
It may be possible with expressions, but my limited knowledge of them has me imaging an extermely ugly and complex one.
So, instead of using Derived Column you can do...
March 16, 2011 at 12:20 pm
SQL 2000 does not have a SQL Browser service like 2005+. Accessing it by IP address should work for you.
*I think* if you register the server name as a System...
March 16, 2011 at 11:24 am
It creates a CROSS JOIN.
These should be equivalent:
SELECT *
FROM table_1 a
JOIN table_2 b ON a.id = b.id,
...
March 16, 2011 at 11:01 am
I would recommend you leave the sp_OA procs disabled on your instance and start using the SQLCLR for tasks like this...
If you're being boxed into using the OLE Automation procs...
March 16, 2011 at 10:54 am
I think he has a list of hostnames and he needs to discover the SQL Server instances in the first place...RamSteve, can you clarify?
March 16, 2011 at 9:35 am
As usual...it depends. I just found this little nugget and it reminded me of this thread. The article is also from the sqlskills.com tandem. It starts off by supporting the...
March 16, 2011 at 8:56 am
I started looking into this but have to go so figured I would post what I found so far...
After setting up a little test environment:
CREATE TABLE dbo.a (NAME VARCHAR(100))
INSERT INTO...
March 15, 2011 at 5:03 pm
To clarify...I am implying that you would enhance your PowerShell script to update the configuration table in the database with the "last reboot time".
March 15, 2011 at 2:32 pm
I would setup a SQL Agent job that was scheduled to "Start automatically when SQL Agent starts" to call your PowerShell script, retrieve the "last reboot time" from the OS...
March 15, 2011 at 2:15 pm
Not that you won't receive help here...but you may be better off posting this in one of the Reporting Services forums: http://www.sqlservercentral.com/Forums/Group416.aspx
March 15, 2011 at 1:10 pm
This is presenting itself as a "running total" problem...i.e. you need to compare a value in the previous row to a value in the current row to make a decision...
March 15, 2011 at 10:48 am
Martin Stephenson (3/15/2011)
I am tempted to create an OS drive and a...
March 15, 2011 at 9:39 am
There is another Sybase migration discussion going on that may assist...this post in particular may be useful to you:
March 15, 2011 at 9:20 am
Viewing 15 posts - 6,916 through 6,930 (of 7,168 total)