Viewing 15 posts - 6,241 through 6,255 (of 14,953 total)
Since you're using SQL 2005 (per the forum you posted in), not SQL 2000, is there any reason to not use OpenRowset Bulk, and then parse the XML using XQuery?...
November 4, 2010 at 1:39 pm
It's a "too many steps for Windows authentication" problem. (There's a more formal name, but this one's more expressive.)
Natively, Windows can only pass authentication one step, e.g.: client to...
November 4, 2010 at 1:35 pm
Will there be any other colons in the data? If not, you could use some simple string functions to get the characters around the colons.
Something like this, but with...
November 4, 2010 at 1:31 pm
Since VB.NET can create text files pretty easily, a CLR proc would do the job, and be more secure than xp_cmdshell.
November 4, 2010 at 1:20 pm
Alternately, if you don't have a Tally table in place, try this:
DECLARE
@SDateTime DATETIME,
@EDateTime DATETIME ;
SELECT
@SDateTime = '11/4/10',
...
November 4, 2010 at 11:53 am
Take a look at isolation levels in Books Online or on MSDN.com. That's about as close as you're going to get. Probably won't do what you need, but...
November 4, 2010 at 10:47 am
Wayne asked a technical question. Gives The Thread indigestion.
November 4, 2010 at 10:44 am
Yep, something that says, "System undergoing upgrades. Minor interruptions or slow-downs in service may occur during the following hours. Please excuse any inconvenience, and schedule any critical uses...
November 4, 2010 at 10:43 am
What you're talking about aren't "locks" in the traditional database sense. What you need is a "mutex" (short for "mutual exclusion"), which is a pretty standard programming concept.
Usually the...
November 4, 2010 at 10:40 am
CELKO (11/4/2010)
November 4, 2010 at 10:31 am
You need a list of the seconds in a time period, and how many jobs were in progress during each second, right?
I recommend using a Numbers table instead of a...
November 4, 2010 at 10:28 am
You could also check out specialized DBA/BI training with a company like SetFocus. They have you take a sort of IQ test, and if you pass that, then you...
November 4, 2010 at 10:25 am
Any particular reason to not just let SQL Server handle the locking? It usually does an adequate job at it.
If you really want to override that, you can look...
November 4, 2010 at 10:20 am
Viewing 15 posts - 6,241 through 6,255 (of 14,953 total)