Viewing 15 posts - 1,666 through 1,680 (of 6,486 total)
npatel0130 (10/8/2009)
October 8, 2009 at 9:45 am
What's the reasoning for pushing the data from the SQL server, rather than using an external component to pull it out?
You tend to get a LOT more options, better securability,...
October 8, 2009 at 7:55 am
Don't know if this is the BEST way, but it's one of the ways:
declare @basemonth datetime
set @basemonth = '20070612'--set this to start at least one month BEFORE your start
;with n1...
October 6, 2009 at 7:33 am
17058 = "access denied" or "cannot access a resource"
1814 = cannot create tempDB/disk full.
Still - it's interesting that the errors occurred in that error. Having the access denied to a...
October 5, 2009 at 1:21 pm
repent_kog_is_near (10/5/2009)
Mattthe tempDB issue was powerful enough to knock out the cluster drives.
Any thoughts how to restore it back from Cluster Administration?
thx
Dan
Fail over to the other instance. If it...
October 5, 2009 at 1:13 pm
The drive is offline - until your cluster can connect to it, there really isn't much SQL server can do?
October 5, 2009 at 12:30 pm
repent_kog_is_near (10/4/2009)
Yes Sir.
(btw - the correct salutation in this case would be "Ma'am". don't let Quaigon Jin fool you)
October 4, 2009 at 3:42 pm
repent_kog_is_near (10/3/2009)
I do not need to plan any other process on the dedicated drive for TempDB. What I am asking is if SQL or Windows Server will need any extra...
October 3, 2009 at 4:16 pm
Here's a bit more expansive an example (where there is more than one crit)
declare @x xml
set @x='
<root>
<Clause Tag="4" IsLeaf="0" Operator="OR">
<Clause Tag="2" IsLeaf="0" Operator="=">
<Clause Tag="0" IsLeaf="-1" Operator="">Fruit</Clause>
<Clause Tag="1" IsLeaf="-1" Operator="">Apple</Clause>
</Clause>
<Clause Tag="2"...
October 3, 2009 at 2:13 pm
This should get you started (on the shredding out part). depending on how many levels you have, this could get rather ugly.
declare @x xml
set @x='<root><Clause Tag="4" IsLeaf="0" Operator="OR">
<Clause Tag="2"...
October 3, 2009 at 1:01 pm
repent_kog_is_near (10/3/2009)
Thanks for the tip. I like making additional data files out of TempDB; it can only help with I/O.
In my case, do you think I can set the TemPDB...
October 3, 2009 at 11:22 am
repent_kog_is_near (10/2/2009)
Will it be a good idea to remove/disable both autogrowth and also autoshrink and...
October 2, 2009 at 10:10 pm
It's giving you what you asked it to do. You've essentially asked it to return the constant value of "FirstName" for every row in person.contact (where person is the...
October 2, 2009 at 2:35 pm
If you're in access - you should dig into a little VBA, and attach a reference to the DTS packages (the newer version automates SSIS). That was you can...
October 2, 2009 at 2:29 pm
J-F Bergeron (10/2/2009)
Grant Fritchey (10/2/2009)
repent_kog_is_near (10/1/2009)
October 2, 2009 at 1:07 pm
Viewing 15 posts - 1,666 through 1,680 (of 6,486 total)