Viewing 15 posts - 5,236 through 5,250 (of 7,502 total)
Thanks Jeff for adding this little - but oh so crucial remark :w00t:
February 11, 2008 at 6:35 am
Excuse me for the very late response :blush:
Kind of lost track of this thread.
This drive mapping should loke something like this
NET USE * \\TheOtherServer\TheSharename Password /USER:Thedomainname\TheOtherusername /PERSISTENT:NO
xcopy c:\myfile.txt \\TheOtherServer\TheSharename
NET...
February 11, 2008 at 5:29 am
Did you grant read permissions to the designated users ?
February 11, 2008 at 3:54 am
figure out in what application query sequence the error occurs !
Then provide some connection details and the exact cmd with its
properties.
Start sqlprofiler to capture the load. If your programmes...
February 10, 2008 at 2:47 am
you have messed up your if - sequence.
if not update(...)
begin
...
end
-- no other statements can exist between the end and the else
else -- elseif does not...
February 10, 2008 at 2:44 am
February 9, 2008 at 4:33 am
Select ...
from tableA A
where not exists (select 1 from tableB B where B.FK = A.pk)
February 9, 2008 at 4:24 am
you could generate a script for view creation based on sp_pkeys or sp_fkeys
But you'll have to study the new datamodel to understand it symanticaly :doze:
for your queries to make sence.
February 8, 2008 at 8:37 am
search the package property "FailParentOnFailure". Set it to true.
and play around with the "forcedexecutionresult",....
February 8, 2008 at 12:56 am
Jeff Moden (2/7/2008)
Radovan Jablonovsky (2/7/2008)
Server was setup to use 2 CPU for parallelism and query execution plan showed parallel execution was used in sorting index. See attached pictures.
Sincerely,
Radovan...
February 8, 2008 at 12:49 am
I haven't experienced on excel with SSAS myself, but hope soon to
do so.
I'm still figuring out what kind of buggs or issues there are with office 2003 in...
February 8, 2008 at 12:46 am
you'd need the OLAP addons for excel.
(downloadable at MS)
But I've also heard that you would need office 2007 :doze: if you want to avoid anoying bugs.
February 7, 2008 at 2:49 pm
How about a kind of split function that returns a table. (tvf)
and performing a left outer join to the same tfv with the new contend.
declare @mycolumn varchar(max)
select @mycolumn =...
February 7, 2008 at 2:46 pm
search the SSC forums "developer sysadmin" and you'll find many hits .
February 7, 2008 at 2:40 pm
Actualy best practise still is using Dr. Codd's rules fo Normalization of the Data Base Relational Model. http://www.sqlservercentral.com/articles/Advanced/coddsrules/1208/
An identity is just an incrementing number (altough you can increment with a...
February 7, 2008 at 2:38 pm
Viewing 15 posts - 5,236 through 5,250 (of 7,502 total)